Lines Matching refs:selected
40 * An implementation of a radio button -- an item that can be selected or
43 * in which only one button at a time can be selected. (Create a ButtonGroup
83 * description: A component which can display it's state as selected or deselected.
132 * @param selected if true, the button is initially selected;
135 public JRadioButton(Icon icon, boolean selected) {
136 this(null, icon, selected);
153 * @param selected if true, the button is initially selected;
156 public JRadioButton (String text, boolean selected) {
157 this(text, null, selected);
178 public JRadioButton (String text, Icon icon, boolean selected) {
179 super(text, icon, selected);