/** */ package linkedList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Element'. * * *

* The following features are supported: *

* * * @see linkedList.LinkedListPackage#getElement() * @model * @generated */ public interface Element extends EObject { /** * Returns the value of the 'Value' containment reference. * *

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

* * @return the value of the 'Value' containment reference. * @see #setValue(linkedList.Object) * @see linkedList.LinkedListPackage#getElement_Value() * @model containment="true" required="true" * @generated */ linkedList.Object getValue(); /** * Sets the value of the '{@link linkedList.Element#getValue Value}' containment reference. * * * @param value the new value of the 'Value' containment reference. * @see #getValue() * @generated */ void setValue(linkedList.Object value); /** * Returns the value of the 'Next' containment reference. * *

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

* * @return the value of the 'Next' containment reference. * @see #setNext(Element) * @see linkedList.LinkedListPackage#getElement_Next() * @model containment="true" * @generated */ Element getNext(); /** * Sets the value of the '{@link linkedList.Element#getNext Next}' containment reference. * * * @param value the new value of the 'Next' containment reference. * @see #getNext() * @generated */ void setNext(Element value); } // Element