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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java215 protected boolean showsRootHandles; field in class:JTree
464 /** Bound property name for <code>showsRootHandles</code>. */
465 public final static String SHOWS_ROOT_HANDLES_PROPERTY = "showsRootHandles";
917 * Sets the value of the <code>showsRootHandles</code> property,
928 * @see #showsRootHandles
936 boolean oldValue = showsRootHandles;
939 showsRootHandles = newValue;
942 showsRootHandles);
950 * Returns the value of the <code>showsRootHandles</code> property.
952 * @return the value of the <code>showsRootHandles</cod
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java141 Boolean showsRootHandles = style.getBoolean(
142 context, "Tree.showsRootHandles", Boolean.TRUE);
144 tree, JTree.SHOWS_ROOT_HANDLES_PROPERTY, showsRootHandles);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java735 Object showsRootHandles = UIManager.get("Tree.showsRootHandles");
736 if (showsRootHandles != null) {
738 JTree.SHOWS_ROOT_HANDLES_PROPERTY, showsRootHandles);

Completed in 39 milliseconds