Home | History | Annotate | Download | only in afe

Lines Matching refs:button

28         IRadioButton button = display.generateRadioButton(groupName, choice);
30 // first button in this group
31 defaultButton = button;
32 button.setValue(true);
34 radioButtons.add(button);
38 for (IRadioButton button : radioButtons) {
39 if (button.getValue()) {
40 return button.getText();
43 throw new RuntimeException("No radio button selected");
61 for (IRadioButton button : radioButtons) {
62 if (button.getText().equals(choice)) {
63 return button;