org.eclipse.core.internal.dtree
Class NoDataDeltaNode

java.lang.Object
  extended by org.eclipse.core.internal.dtree.AbstractDataTreeNode
      extended by org.eclipse.core.internal.dtree.NoDataDeltaNode

public class NoDataDeltaNode
extends AbstractDataTreeNode

A NoDataDeltaNodeis a node in a delta tree whose subtree contains differences since the delta's parent. Refer to the DeltaDataTree API and class comment for details.

See Also:
DeltaDataTree

Field Summary
 
Fields inherited from class org.eclipse.core.internal.dtree.AbstractDataTreeNode
T_COMPLETE_NODE, T_DELETED_NODE, T_DELTA_NODE, T_NO_DATA_DELTA_NODE
 
Constructor Summary
NoDataDeltaNode(java.lang.String name)
          Creates a new empty delta.
NoDataDeltaNode(java.lang.String name, AbstractDataTreeNode[] children)
          Creates a new data tree node
 
Method Summary
 java.lang.String toString()
          Returns a unicode representation of the node.
 
Methods inherited from class org.eclipse.core.internal.dtree.AbstractDataTreeNode
getChildren, getName, storeStrings
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoDataDeltaNode

public NoDataDeltaNode(java.lang.String name)
Creates a new empty delta.


NoDataDeltaNode

public NoDataDeltaNode(java.lang.String name,
                       AbstractDataTreeNode[] children)
Creates a new data tree node

Parameters:
name - name of new node
children - children of the new node
Method Detail

toString

public java.lang.String toString()
Returns a unicode representation of the node. This method is used for debugging purposes only (no NLS support needed)

Overrides:
toString in class AbstractDataTreeNode