Package mondrian.gui.validate
Interface TreeModel
-
- All Known Implementing Classes:
WorkbenchTreeModel
public interface TreeModel
A generalization of ajavax.swing.tree.TreeModel
.- Author:
- mlowery
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getChild(Object parent, int index)
Returns the child atindex
.int
getChildCount(Object parent)
Returns the number of children ofparent
.Object
getRoot()
Returns the root object of this tree model.
-