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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJButton.java189 * Gets the value of the <code>defaultCapable</code> property.
191 * @return the value of the <code>defaultCapable</code> property
197 return defaultCapable;
201 * Sets the <code>defaultCapable</code> property,
204 * The default value of the <code>defaultCapable</code>
208 * @param defaultCapable <code>true</code> if this button will be
217 public void setDefaultCapable(boolean defaultCapable) { argument
218 boolean oldDefaultCapable = this.defaultCapable;
219 this.defaultCapable = defaultCapable;
[all...]
H A DAbstractButton.java209 boolean defaultCapable = true; field in class:AbstractButton
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKPainter.java277 boolean defaultCapable = (button instanceof JButton) &&
281 x, y, w, h, paintBG, paintFocus, defaultCapable, toolButton);
288 boolean defaultCapable, boolean toolButton) {
292 paintBackground, paintFocus, defaultCapable, toolButton)) {
296 paintBackground, paintFocus, defaultCapable, toolButton);
300 if (defaultCapable && !toolButton) {
285 paintButtonBackgroundImpl(SynthContext context, Graphics g, Region id, String detail, int x, int y, int w, int h, boolean paintBackground, boolean paintFocus, boolean defaultCapable, boolean toolButton) argument

Completed in 295 milliseconds