rle.vm
Class DataNode

java.lang.Object
  extended by javax.swing.tree.DefaultMutableTreeNode
      extended by rle.vm.VmNode
          extended by rle.vm.DataNode
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, javax.swing.tree.MutableTreeNode, javax.swing.tree.TreeNode
Direct Known Subclasses:
InfoGroupNode, InfoNode

public abstract class DataNode
extends VmNode

The base class for Nodes which can appear in the data tree of the Variant Manager.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class rle.vm.VmNode
SEPARATOR
 
Fields inherited from class javax.swing.tree.DefaultMutableTreeNode
allowsChildren, children, EMPTY_ENUMERATION, parent, userObject
 
Constructor Summary
DataNode()
           
 
Method Summary
 java.util.List<DataNode> dataList()
          Returns an unmodifiable list of child DataNodes
 InfoNode findInfo(java.lang.String path)
           
 InfoGroupNode findInfoGroup(java.lang.String path)
           
 java.util.List<InfoGroupNode> infoGroupList()
          Returns an unmodifiable list of child InfoGroupNodes
 java.util.List<InfoGroupNode> infoGroupListRecursive()
          Returns an unmodifiable list of child InfoGroupNodes, recursing to include all sub-groups
 java.util.List<InfoNode> infoList()
          Returns an unmodifiable list of child InfoNodes
abstract  java.lang.String structurePath()
           
 
Methods inherited from class rle.vm.VmNode
childList, findNode, getId, pathId, setId, toString
 
Methods inherited from class javax.swing.tree.DefaultMutableTreeNode
add, breadthFirstEnumeration, children, clone, depthFirstEnumeration, getAllowsChildren, getChildAfter, getChildAt, getChildBefore, getChildCount, getDepth, getFirstChild, getFirstLeaf, getIndex, getLastChild, getLastLeaf, getLeafCount, getLevel, getNextLeaf, getNextNode, getNextSibling, getParent, getPath, getPathToRoot, getPreviousLeaf, getPreviousNode, getPreviousSibling, getRoot, getSharedAncestor, getSiblingCount, getUserObject, getUserObjectPath, insert, isLeaf, isNodeAncestor, isNodeChild, isNodeDescendant, isNodeRelated, isNodeSibling, isRoot, pathFromAncestorEnumeration, postorderEnumeration, preorderEnumeration, remove, remove, removeAllChildren, removeFromParent, setAllowsChildren, setParent, setUserObject
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DataNode

public DataNode()
Method Detail

structurePath

public abstract java.lang.String structurePath()

findInfo

public InfoNode findInfo(java.lang.String path)

findInfoGroup

public InfoGroupNode findInfoGroup(java.lang.String path)

infoList

public java.util.List<InfoNode> infoList()
Returns an unmodifiable list of child InfoNodes


dataList

public java.util.List<DataNode> dataList()
Returns an unmodifiable list of child DataNodes


infoGroupList

public java.util.List<InfoGroupNode> infoGroupList()
Returns an unmodifiable list of child InfoGroupNodes


infoGroupListRecursive

public java.util.List<InfoGroupNode> infoGroupListRecursive()
Returns an unmodifiable list of child InfoGroupNodes, recursing to include all sub-groups