public abstract class TreeUI extends ComponentUI
Constructor and Description |
---|
TreeUI() |
Modifier and Type | Method and Description |
---|---|
abstract void |
cancelEditing(JTree tree)
Cancels the current editing session.
|
abstract TreePath |
getClosestPathForLocation(JTree tree,
int x,
int y)
Returns the path to the node that is closest to x,y.
|
abstract TreePath |
getEditingPath(JTree tree)
Returns the path to the element that is being edited.
|
abstract Rectangle |
getPathBounds(JTree tree,
TreePath path)
Returns the Rectangle enclosing the label portion that the
last item in path will be drawn into.
|
abstract TreePath |
getPathForRow(JTree tree,
int row)
Returns the path for passed in row.
|
abstract int |
getRowCount(JTree tree)
Returns the number of rows that are being displayed.
|
abstract int |
getRowForPath(JTree tree,
TreePath path)
Returns the row that the last item identified in path is visible
at.
|
abstract boolean |
isEditing(JTree tree)
Returns true if the tree is being edited.
|
abstract void |
startEditingAtPath(JTree tree,
TreePath path)
Selects the last item in path and tries to edit it.
|
abstract boolean |
stopEditing(JTree tree)
Stops the current editing session.
|
contains, createUI, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, installUI, paint, uninstallUI, update
public abstract Rectangle getPathBounds(JTree tree, TreePath path)
public abstract TreePath getPathForRow(JTree tree, int row)
public abstract int getRowForPath(JTree tree, TreePath path)
public abstract int getRowCount(JTree tree)
public abstract TreePath getClosestPathForLocation(JTree tree, int x, int y)
public abstract boolean isEditing(JTree tree)
public abstract boolean stopEditing(JTree tree)
public abstract void cancelEditing(JTree tree)
public abstract void startEditingAtPath(JTree tree, TreePath path)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.