| |
|
| nextapp.echo2.app.button.ToggleButton nextapp.echo2.app.RadioButton
RadioButton | public class RadioButton extends ToggleButton (Code) | | A radio button implementation.
|
BUTTON_GROUP_CHANGED_PROPERTY | final public static String BUTTON_GROUP_CHANGED_PROPERTY(Code) | | |
RadioButton | public RadioButton()(Code) | | Creates a radio button with no text or icon.
|
RadioButton | public RadioButton(String text)(Code) | | Creates a radio button with text.
Parameters: text - the text to be displayed in the radio button |
RadioButton | public RadioButton(ImageReference icon)(Code) | | Creates a radio button with an icon.
Parameters: icon - the icon to be displayed in the radio button |
RadioButton | public RadioButton(String text, ImageReference icon)(Code) | | Creates a radio button with text and an icon.
Parameters: text - the text to be displayed in the radio button Parameters: icon - the icon to be displayed in the radio button |
getGroup | public ButtonGroup getGroup()(Code) | | Retrieves the ButtonGroup to which this
RadioButton belongs.
Only one radio button in a group may be selected at a time.
the button group |
setGroup | public void setGroup(ButtonGroup newValue)(Code) | | Sets the ButtonGroup to which this
RadioButton belongs.
Only one radio button in a group may be selected at a time.
Parameters: newValue - the new button group |
|
|
|