public class FullTreeModel extends ClassAndEntityTreeModel
| Red (johnr) |
| Red (eal) |
EntityTreeModel.TreeUpdateListener_root| Constructor and Description |
|---|
FullTreeModel(CompositeEntity root)
Create a new tree model with the specified root.
|
| Modifier and Type | Method and Description |
|---|---|
protected java.util.List |
_attributes(java.lang.Object object)
Return the list of attributes, or an empty list if there are none.
|
protected java.util.List |
_ports(java.lang.Object object)
Return the list of ports, or an empty list if there are none.
|
protected java.util.List |
_relations(java.lang.Object object)
Return the list of relations, or an empty list if there are none.
|
java.lang.Object |
getChild(java.lang.Object parent,
int index)
Get the child of the given parent at the given index.
|
int |
getChildCount(java.lang.Object parent)
Return the number of children of the given parent.
|
int |
getIndexOfChild(java.lang.Object parent,
java.lang.Object child)
Return the index of the given child within the given parent.
|
boolean |
isLeaf(java.lang.Object object)
Return true if the object is a leaf node.
|
_classesaddTreeModelListener, getRoot, removeTreeModelListener, setRoot, valueForPathChangedpublic FullTreeModel(CompositeEntity root)
root - The root of the tree.public java.lang.Object getChild(java.lang.Object parent,
int index)
getChild in interface javax.swing.tree.TreeModelgetChild in class ClassAndEntityTreeModelparent - A node in the tree.index - The index of the desired child.public int getChildCount(java.lang.Object parent)
getChildCount in interface javax.swing.tree.TreeModelgetChildCount in class ClassAndEntityTreeModelparent - A parent node.public int getIndexOfChild(java.lang.Object parent,
java.lang.Object child)
getIndexOfChild in interface javax.swing.tree.TreeModelgetIndexOfChild in class ClassAndEntityTreeModelparent - The parent.child - The child.public boolean isLeaf(java.lang.Object object)
isLeaf in interface javax.swing.tree.TreeModelisLeaf in class ClassAndEntityTreeModelobject - The object.protected java.util.List _attributes(java.lang.Object object)
object - The object.protected java.util.List _ports(java.lang.Object object)
object - The object.protected java.util.List _relations(java.lang.Object object)
object - The object.