public abstract class TreeUI extends ComponentUI
| Constructor and Description |
|---|
TreeUI()
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
cancelEditing(JTree
Cancels the current editing session.
|
abstract TreePath |
getClosestPathForLocation(JTree
Returns the path to the node that is closest to x,y.
|
abstract TreePath |
getEditingPath(JTree
Returns the path to the element that is being edited.
|
abstract Rectangle |
getPathBounds(JTree
Returns the Rectangle enclosing the label portion that the last item in path will be drawn into.
|
abstract TreePath |
getPathForRow(JTree
Returns the path for passed in row.
|
abstract int |
getRowCount(JTree
Returns the number of rows that are being displayed.
|
abstract int |
getRowForPath(JTree
Returns the row that the last item identified in path is visible at.
|
abstract boolean |
isEditing(JTree
Returns true if the tree is being edited.
|
abstract void |
startEditingAtPath(JTree
Selects the last item in path and tries to edit it.
|
abstract boolean |
stopEditing(JTree
Stops the current editing session.
|
contains, createUI, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, installUI, paint, uninstallUI, updatepublic abstract RectanglegetPathBounds(JTree tree, TreePath path)
public abstract TreePathgetPathForRow(JTree tree, int row)
public abstract int getRowForPath(JTreetree, TreePath path)
public abstract int getRowCount(JTreetree)
public abstract TreePathgetClosestPathForLocation(JTree tree, int x, int y)
public abstract boolean isEditing(JTreetree)
public abstract boolean stopEditing(JTreetree)
public abstract void cancelEditing(JTreetree)
public abstract void startEditingAtPath(JTreetree, TreePath path)