Package mondrian.gui.validate
Interface TreeModelPath
-
- All Known Implementing Classes:
WorkbenchTreeModelPath
public interface TreeModelPath
A generalization ofjavax.swing.tree.TreePath
.- Author:
- mlowery
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getPathComponent(int element)
Returns the component of the path at the given index.int
getPathCount()
Returns the length of this path.boolean
isEmpty()
Returns true if path has no components.
-
-
-
Method Detail
-
getPathCount
int getPathCount()
Returns the length of this path.
-
getPathComponent
Object getPathComponent(int element)
Returns the component of the path at the given index.
-
isEmpty
boolean isEmpty()
Returns true if path has no components.
-
-