Exemplo n.º 1
0
 private void notifyChoicePicked(MultipleChoiceEvent e) {
   if (listeners == null) return;
   for (MultipleChoiceListener mcl : listeners) {
     mcl.choicePicked(e);
   }
 }
Exemplo n.º 2
0
 private void notifyAnswerChecked(MultipleChoiceEvent e) {
   if (listeners == null) return;
   for (MultipleChoiceListener mcl : listeners) {
     mcl.answerChecked(e);
   }
 }