org.eclipse.emf.test.models.tree
Interface Node

All Superinterfaces:
EObject, Notifier
All Known Implementing Classes:
NodeImpl

public interface Node
extends EObject

A representation of the model object 'Node'.

The following features are supported:

See Also:
TreePackage.getNode()

Method Summary
 EList<Node> getChildren()
          Returns the value of the 'Children' containment reference list.
 Data getData()
          Returns the value of the 'Data' reference.
 java.lang.String getName()
          Returns the value of the 'Name' attribute
 Node getParent()
          Returns the value of the 'Parent' container reference.
 EList<Node> getRelatedNodes()
          Returns the value of the 'Related Nodes' reference list.
 void setData(Data value)
          Sets the value of the 'Data' reference
 void setName(java.lang.String value)
          Sets the value of the 'Name' attribute
 void setParent(Node value)
          Sets the value of the 'Parent' container reference
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Method Detail

getName

java.lang.String getName()
Returns the value of the 'Name' attribute.

If the meaning of the 'Name' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Name' attribute.
See Also:
setName(String), TreePackage.getNode_Name()

setName

void setName(java.lang.String value)
Sets the value of the 'Name' attribute.

Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()

getParent

Node getParent()
Returns the value of the 'Parent' container reference. It is bidirectional and its opposite is 'Children'.

If the meaning of the 'Parent' container reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Parent' container reference.
See Also:
setParent(Node), TreePackage.getNode_Parent(), getChildren()

setParent

void setParent(Node value)
Sets the value of the 'Parent' container reference.

Parameters:
value - the new value of the 'Parent' container reference.
See Also:
getParent()

getChildren

EList<Node> getChildren()
Returns the value of the 'Children' containment reference list. The list contents are of type Node. It is bidirectional and its opposite is 'Parent'.

If the meaning of the 'Children' containment reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'Children' containment reference list.
See Also:
TreePackage.getNode_Children(), getParent()

getData

Data getData()
Returns the value of the 'Data' reference. It is bidirectional and its opposite is 'Node'.

If the meaning of the 'Data' reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Data' reference.
See Also:
setData(Data), TreePackage.getNode_Data(), Data.getNode()

setData

void setData(Data value)
Sets the value of the 'Data' reference.

Parameters:
value - the new value of the 'Data' reference.
See Also:
getData()

getRelatedNodes

EList<Node> getRelatedNodes()
Returns the value of the 'Related Nodes' reference list. The list contents are of type Node.

If the meaning of the 'Related Nodes' reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'Related Nodes' reference list.
See Also:
TreePackage.getNode_RelatedNodes()

Copyright 2001-2006 IBM Corporation and others.
All Rights Reserved.