Advertisement
pastetumlum

Untitled

Jul 17th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1.     public void updateQuestion() {
  2.         String content = library.getQuestions().get(library.getQuestionIndex()).getContent();
  3.         String a = library.getQuestions().get(library.getQuestionIndex()).getAnswerA();
  4.         String b = library.getQuestions().get(library.getQuestionIndex()).getAnswerB();
  5.         String c = library.getQuestions().get(library.getQuestionIndex()).getAnswerC();
  6.         String d = library.getQuestions().get(library.getQuestionIndex()).getAnswerD();
  7.         taQuestion.setText(content);
  8.         btA.setText(a);
  9.         btB.setText(b);
  10.         btC.setText(c);
  11.         btD.setText(d);
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement