Method Summary |
|
public Radio | appendItem(String label, String value) Appends a radio button. |
public Object | clone() |
void | fixOnAdd(Radio child) Called when a radio is added to this group. |
void | fixOnRemove(Radio child) Called when a radio is removed from this group. |
void | fixSelectedIndex() Fix the selected index, _jsel, assuming there are no selected one
before (and excludes) j-the radio button. |
public Radio | getItemAtIndex(int index) Returns the radio button at the specified index. |
public int | getItemCount() Returns the number of radio buttons in this group. |
public String | getName() Returns the name of this group of radio buttons. |
public String | getOrient() Returns the orient. |
public int | getSelectedIndex() Returns the index of the selected radio button (-1 if no one is selected). |
public Radio | getSelectedItem() Returns the selected radio button. |
public Radio | removeItemAt(int index) Removes the child radio button in the list box at the given index. |
public void | setName(String name) Sets the name of this group of radio buttons. |
public void | setOrient(String orient) Sets the orient. |
public void | setSelectedIndex(int jsel) Deselects all of the currently selected radio button and selects
the radio button with the given index. |
public void | setSelectedItem(Radio item) Deselects all of the currently selected radio buttons and selects
the given radio button. |