| java.lang.Object javax.swing.tree.DefaultMutableTreeNode org.geotools.gui.swing.tree.DefaultMutableTreeNode
All known Subclasses: org.geotools.gui.swing.tree.NamedTreeNode,
Constructor Summary | |
public | DefaultMutableTreeNode() Creates a tree node that has no parent and no children, but which allows children. | public | DefaultMutableTreeNode(Object userObject) Creates a tree node with no parent, no children, but which allows
children, and initializes it with the specified user object. | public | DefaultMutableTreeNode(Object userObject, boolean allowsChildren) Creates a tree node with no parent, no children, initialized with
the specified user object, and that allows children only if specified. |
DefaultMutableTreeNode | public DefaultMutableTreeNode()(Code) | | Creates a tree node that has no parent and no children, but which allows children.
|
DefaultMutableTreeNode | public DefaultMutableTreeNode(Object userObject)(Code) | | Creates a tree node with no parent, no children, but which allows
children, and initializes it with the specified user object.
Parameters: userObject - an Object provided by the user that constitutes the node's data |
DefaultMutableTreeNode | public DefaultMutableTreeNode(Object userObject, boolean allowsChildren)(Code) | | Creates a tree node with no parent, no children, initialized with
the specified user object, and that allows children only if specified.
Parameters: userObject - an Object provided by the user that constitutes the node's data Parameters: allowsChildren - if true, the node is allowed to have child nodes -- otherwise,it is always a leaf node |
|
|