Searched defs:pressedIcon (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractButton.java130 public static final String PRESSED_ICON_CHANGED_PROPERTY = "pressedIcon";
170 private Icon pressedIcon = null; field in class:AbstractButton
485 * @return the <code>pressedIcon</code> property
489 return pressedIcon;
494 * @param pressedIcon the icon used as the "pressed" image
501 public void setPressedIcon(Icon pressedIcon) { argument
502 Icon oldValue = this.pressedIcon;
503 this.pressedIcon = pressedIcon;
504 firePropertyChange(PRESSED_ICON_CHANGED_PROPERTY, oldValue, pressedIcon);
[all...]

Completed in 79 milliseconds