/** * Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.tests.model3; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object 'Node D'. *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.tests.model3.Model3Package#getNodeD() * @model * @generated */ public interface NodeD extends EObject { /** * Returns the value of the 'Children' containment reference list. The list contents are of type * {@link org.eclipse.emf.cdo.tests.model3.NodeD}. It is bidirectional and its opposite is ' * {@link org.eclipse.emf.cdo.tests.model3.NodeD#getParent Parent}'. *

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

* * * @return the value of the 'Children' containment reference list. * @see org.eclipse.emf.cdo.tests.model3.Model3Package#getNodeD_Children() * @see org.eclipse.emf.cdo.tests.model3.NodeD#getParent * @model opposite="parent" containment="true" * @generated */ EList getChildren(); /** * Returns the value of the 'Parent' container reference. It is bidirectional and its opposite is ' * {@link org.eclipse.emf.cdo.tests.model3.NodeD#getChildren Children}'. *

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

* * * @return the value of the 'Parent' container reference. * @see #setParent(NodeD) * @see org.eclipse.emf.cdo.tests.model3.Model3Package#getNodeD_Parent() * @see org.eclipse.emf.cdo.tests.model3.NodeD#getChildren * @model opposite="children" transient="false" * @generated */ NodeD getParent(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model3.NodeD#getParent Parent}' container * reference. * * @param value * the new value of the 'Parent' container reference. * @see #getParent() * @generated */ void setParent(NodeD value); /** * 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... *

* * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.emf.cdo.tests.model3.Model3Package#getNodeD_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model3.NodeD#getName Name}' attribute. * * @param value * the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Other Nodes' reference list. The list contents are of type * {@link org.eclipse.emf.cdo.tests.model3.NodeD}. It is bidirectional and its opposite is ' * {@link org.eclipse.emf.cdo.tests.model3.NodeD#getOppositeNode Opposite Node}'. *

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

* * * @return the value of the 'Other Nodes' reference list. * @see org.eclipse.emf.cdo.tests.model3.Model3Package#getNodeD_OtherNodes() * @see org.eclipse.emf.cdo.tests.model3.NodeD#getOppositeNode * @model opposite="oppositeNode" * @generated */ EList getOtherNodes(); /** * Returns the value of the 'Opposite Node' reference. It is bidirectional and its opposite is ' * {@link org.eclipse.emf.cdo.tests.model3.NodeD#getOtherNodes Other Nodes}'. *

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

* * * @return the value of the 'Opposite Node' reference. * @see #setOppositeNode(NodeD) * @see org.eclipse.emf.cdo.tests.model3.Model3Package#getNodeD_OppositeNode() * @see org.eclipse.emf.cdo.tests.model3.NodeD#getOtherNodes * @model opposite="otherNodes" * @generated */ NodeD getOppositeNode(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model3.NodeD#getOppositeNode Opposite Node}' * reference. * * @param value * the new value of the 'Opposite Node' reference. * @see #getOppositeNode() * @generated */ void setOppositeNode(NodeD value); } // NodeD