java.lang.Objectjavax.swing.tree.AbstractLayoutCache
All Implemented Interfaces:
RowMapper
Direct Known Subclasses:
VariableHeightLayoutCache, FixedHeightLayoutCache
java.beans
package.
Please see java.beans.XMLEncoder .Scott
- VioletNested Class Summary: | ||
---|---|---|
abstract public static class | AbstractLayoutCache.NodeDimensions | Used by AbstractLayoutCache to determine the size
and x origin of a particular node. |
Field Summary | ||
---|---|---|
protected NodeDimensions | nodeDimensions | Object responsible for getting the size of a node. |
protected TreeModel | treeModel | Model providing information. |
protected TreeSelectionModel | treeSelectionModel | Selection model. |
protected boolean | rootVisible | True if the root node is displayed, false if its children are the highest visible nodes. |
protected int | rowHeight | Height to use for each row. If this is <= 0 the renderer will be used to determine the height for each row. |
Method from javax.swing.tree.AbstractLayoutCache Summary: |
---|
getBounds, getExpandedState, getModel, getNodeDimensions, getNodeDimensions, getPathClosestTo, getPathForRow, getPreferredHeight, getPreferredWidth, getRowCount, getRowForPath, getRowHeight, getRowsForPaths, getSelectionModel, getVisibleChildCount, getVisiblePathsFrom, invalidatePathBounds, invalidateSizes, isExpanded, isFixedRowHeight, isRootVisible, setExpandedState, setModel, setNodeDimensions, setRootVisible, setRowHeight, setSelectionModel, treeNodesChanged, treeNodesInserted, treeNodesRemoved, treeStructureChanged |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.swing.tree.AbstractLayoutCache Detail: |
---|
|
|
TreeModel that is providing the data. |
|
placeIn ,
the size needed to represent value .
If inPlace is null , a newly created
Rectangle should be returned, otherwise the value
should be placed in inPlace and returned. This will
return null if there is no renderer. |
null ,
otherwise it'll always return a valid path.
If you need to test if the
returned object is exactly at x, y you should get the bounds for
the returned path and test x, y against that. |
null is returned. |
|
(bounds.x, bounds.y) and
ends at bounds.height + bounds.y .
If bounds is null ,
the preferred width for all the nodes
will be returned (and this may be a VERY expensive
computation). |
|
|
|
TreePath instances in
path are being displayed at.
This method should return an array of the same length as that passed
in, and if one of the TreePaths
in path is not valid its entry in the array should
be set to -1. |
|
|
Enumerator that increments over the visible
paths starting at the passed in location. The ordering of the
enumeration is based on how the paths are displayed.
The first element of the returned enumeration will be path,
unless it isn't visible,
in which case null will be returned. |
LayoutCache that the bounds for
path are invalid, and need to be updated. |
TreeState that it needs to recalculate
all the sizes it is referencing. |
|
|
|
path expanded state to
isExpanded . |
TreeModel that will provide the data. |
|
TreeModel is visible. |
|
TreeSelectionModel used to manage the
selection to new LSM. |
Invoked after a node (or a set of siblings) has changed in some way. The node(s) have not changed locations in the tree or altered their children arrays, but other attributes have changed and may affect presentation. Example: the name of a file has changed, but it is in the same location in the file system. e.path() returns the path the parent of the changed node(s). e.childIndices() returns the index(es) of the changed node(s). |
Invoked after nodes have been inserted into the tree. e.path() returns the parent of the new nodes e.childIndices() returns the indices of the new nodes in ascending order. |
Invoked after nodes have been removed from the tree. Note that if a subtree is removed from the tree, this method may only be invoked once for the root of the removed subtree, not once for each individual set of siblings removed. e.path() returns the former parent of the deleted nodes. e.childIndices() returns the indices the nodes had before they were deleted in ascending order. |
Invoked after the tree has drastically changed structure from a
given node down. If the path returned by e.path() holds the path to the node. e.childIndices() returns null. |