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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicySourceModel.java300 * {@link #expand(PolicySourceModelContext)} and {@link #isExpanded()} for more details.
321 private boolean isExpanded() { method in class:PolicySourceModel
334 * {@link #isExpanded()} and {@link #containsPolicyReferences()} for more details.
340 if (!isExpanded()) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTreeUI.java218 boolean isExpanded,
223 path, row, isExpanded,
215 paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DAbstractLayoutCache.java267 public abstract boolean isExpanded(TreePath path); method in class:AbstractLayoutCache
336 * <code>isExpanded</code>.
339 * @param isExpanded true if the path should be expanded, false otherwise
341 public abstract void setExpandedState(TreePath path, boolean isExpanded); argument
H A DFixedHeightLayoutCache.java163 public boolean isExpanded(TreePath path) { method in class:FixedHeightLayoutCache
167 return (lastNode != null && lastNode.isExpanded());
192 if (node != null && node.isExpanded()) {
233 if(node != null && node.isExpanded()) {
285 if(node != null && node.isExpanded()) {
295 * <code>isExpanded</code>.
297 public void setExpandedState(TreePath path, boolean isExpanded) { argument
298 if(isExpanded)
325 return (node != null) ? (node.isVisible() && node.isExpanded()) :
370 if(changedParent.isVisible() && changedParent.isExpanded())
746 protected boolean isExpanded; field in class:FixedHeightLayoutCache.FHTreeStateNode
922 public boolean isExpanded() { method in class:FixedHeightLayoutCache.FHTreeStateNode
[all...]
H A DVariableHeightLayoutCache.java174 * <code>isExpanded</code>.
176 * @param isExpanded true if the path should be expanded, otherwise false
178 public void setExpandedState(TreePath path, boolean isExpanded) { argument
180 if(isExpanded)
200 return (node != null) ? (node.isVisible() && node.isExpanded()) :
381 public boolean isExpanded(TreePath path) { method in class:VariableHeightLayoutCache
385 return (lastNode != null && lastNode.isExpanded());
487 changedParentNode.isExpanded()));
557 changedParentNode.isExpanded()));
562 if(removedNode.isExpanded()) {
1204 public boolean isExpanded() { method in class:VariableHeightLayoutCache.TreeStateNode
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceTreeTool.java161 private boolean isExpanded; field in class:SourceTreeTool.SourceTreeNode
184 if (!isExpanded && isDirectory) {
198 isExpanded = true;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java333 boolean isExpanded;
350 isExpanded = hasBeenExpanded = false;
353 isExpanded = treeState.getExpandedState(path);
361 row, isExpanded, hasBeenExpanded, isLeaf);
389 isExpanded = hasBeenExpanded = false;
392 isExpanded = treeState.getExpandedState(path);
406 path, row, isExpanded,
412 path, row, isExpanded,
415 if (shouldPaintExpandControl(path, row, isExpanded,
419 isExpanded, hasBeenExpande
478 paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
523 paintRow(TreeCellRenderer renderer, DefaultTreeCellRenderer dtcr, SynthContext treeContext, SynthContext cellContext, Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, Rectangle rowBounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
592 paintExpandControl(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTreeUI.java165 protected void paintHorizontalPartOfLeg(final Graphics g, final Rectangle clipBounds, final Insets insets, final Rectangle bounds, final TreePath path, final int row, final boolean isExpanded, final boolean hasBeenExpanded, final boolean isLeaf) { argument
167 super.paintHorizontalPartOfLeg(g, clipBounds, insets, bounds, path, row, isExpanded, hasBeenExpanded, isLeaf);
185 protected void paintExpandControl(final Graphics g, final Rectangle clipBounds, final Insets insets, final Rectangle bounds, final TreePath path, final int row, final boolean isExpanded, final boolean hasBeenExpanded, final boolean isLeaf) { argument
199 super.paintExpandControl(g, clipBounds, insets, bounds, path, row, isExpanded, hasBeenExpanded, isLeaf);
204 final Icon icon = isExpanded ? getExpandedIcon() : getCollapsedIcon();
206 super.paintExpandControl(g, clipBounds, insets, bounds, path, row, isExpanded, hasBeenExpanded, isLeaf);
228 setupPainter(state, isExpanded, isLeftToRight);
240 protected void setupPainter(State state, final boolean isExpanded, final boolean leftToRight) { argument
246 painter.state.set(isExpanded ? Direction.DOWN : Direction.RIGHT);
252 painter.state.set(getDirection(isExpanded, leftToRigh
257 getDirection(final boolean isExpanded, final boolean isLeftToRight) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java1320 if (root != null && !model.isLeaf(root) && isExpanded(rootPath)) {
1339 if (model.isLeaf(root) || !isExpanded(rootPath)) {
1545 isExpanded(selRow), getModel().isLeaf(lastPath), selRow,
1942 if(!isExpanded(parent))
1990 public boolean isExpanded(TreePath path) { method in class:JTree
2013 public boolean isExpanded(int row) { method in class:JTree
2038 return !isExpanded(path);
2049 return !isExpanded(row);
2079 return isExpanded(parentPath);
3017 isExpanded(ro
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java1173 boolean isExpanded;
1186 isExpanded = hasBeenExpanded = false;
1188 isExpanded = treeState.getExpandedState(path);
1208 isExpanded,
1214 isExpanded,
1217 if(shouldPaintExpandControl(path, row, isExpanded,
1220 path, row, isExpanded,
1224 row, isExpanded, hasBeenExpanded, isLeaf);
1349 boolean isExpanded,
1480 int row, boolean isExpanded,
1346 paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1477 paintExpandControl(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1516 paintRow(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1547 shouldPaintExpandControl(TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
[all...]

Completed in 60 milliseconds