Lines Matching defs:icon
99 * @param icon the image that the button should display
101 public JToggleButton(Icon icon) {
102 this(null, icon, false);
109 * @param icon the image that the button should display
113 public JToggleButton(Icon icon, boolean selected) {
114 this(null, icon, selected);
154 * @param icon the image that the button should display
156 public JToggleButton(String text, Icon icon) {
157 this(text, icon, false);
165 * @param icon the image that the button should display
169 public JToggleButton (String text, Icon icon, boolean selected) {
176 init(text, icon);