Searched refs:contentAreaFilled (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractButton.java120 public static final String CONTENT_AREA_FILLED_CHANGED_PROPERTY = "contentAreaFilled";
183 private boolean contentAreaFilled = true; field in class:AbstractButton
1455 * Gets the <code>contentAreaFilled</code> property.
1457 * @return the <code>contentAreaFilled</code> property
1461 return contentAreaFilled;
1465 * Sets the <code>contentAreaFilled</code> property.
1470 * The default value for the the <code>contentAreaFilled</code>
1489 boolean oldValue = contentAreaFilled;
1490 contentAreaFilled = b;
1492 firePropertyChange(CONTENT_AREA_FILLED_CHANGED_PROPERTY, oldValue, contentAreaFilled);
[all...]

Completed in 47 milliseconds