Package mondrian.gui.validate
Interface TreeModelPath
-
- All Known Implementing Classes:
WorkbenchTreeModelPath
public interface TreeModelPathA generalization ofjavax.swing.tree.TreePath.- Author:
- mlowery
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetPathComponent(int element)Returns the component of the path at the given index.intgetPathCount()Returns the length of this path.booleanisEmpty()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.
-
-