Modifier and Type | Method and Description |
---|---|
TreeNode[] |
TreeNode.getChildren()
Returns an array containing the actual child TreeNodes of this TreeNode (visible and invisible)
|
TreeNode |
TreeNode.getParent()
Returns the parent of this TreeNode
|
TreeNode |
TreeNode.getRealParent()
Returns the real parent of this TreeNode, i.e.
|
TreeNode[] |
TreeNode.getVisibleChildren()
Returns an array containing the visible child TreeNodes of this TreeNode
|
Modifier and Type | Method and Description |
---|---|
void |
ITreeNodeFactory.addChildrenToTreeNode(TreeNode parent)
Explorer UI calls this method to allow plugins to add child TreeNodes to each TreeNode as it is
first added to the Navigation tree.
|
void |
TreeNode.addChildToNode(TreeNode child,
int complex)
This method adds the given child to this TreeNode.
|
abstract int |
TreeNode.compare(TreeNode child1,
TreeNode child2)
compares two TreeNodes that are children to this one, and returns their sort order Typically
the comparison will based on either the "sequence" or the "title".
|
static int |
TreeNode.compareByName(TreeNode child1,
TreeNode child2)
Compares two child TreeNodes based on their Names
|
static int |
TreeNode.compareBySequence(TreeNode child1,
TreeNode child2)
Compares two child TreeNodes based on their Sequence values
|
boolean |
IExplorerTreeNodeDragDrop.dropAction(int action,
TreeNode treeNode)
Carry out the specified drop action using the specified TreeNode
|
int |
IExplorerTreeNodeDragDrop.getAcceptedOperations(TreeNode treeNode)
Return the drag and drop operations that are accepted by this target for the specified TreeNode
|
void |
TreeNode.removeChildFromNode(TreeNode child)
This method removes the given child to this TreeNode
|
void |
TreeNode.setParent(TreeNode newParent)
Sets the parent of this TreeNode
|
Constructor and Description |
---|
TreeNode(TreeNode parent,
MQExtObject object,
java.lang.String plugin_id)
Constructor
|