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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractButton.java116 public static final String ROLLOVER_ENABLED_CHANGED_PROPERTY = "rolloverEnabled";
182 private boolean rolloverEnabled = false; field in class:AbstractButton
1499 * Gets the <code>rolloverEnabled</code> property.
1501 * @return the value of the <code>rolloverEnabled</code> property
1505 return rolloverEnabled;
1509 * Sets the <code>rolloverEnabled</code> property, which
1511 * The default value for the <code>rolloverEnabled</code>
1524 boolean oldValue = rolloverEnabled;
1525 rolloverEnabled = b;
1527 firePropertyChange(ROLLOVER_ENABLED_CHANGED_PROPERTY, oldValue, rolloverEnabled);
[all...]

Completed in 62 milliseconds