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

* The following features are supported: *

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

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

* * @return the value of the 'First' containment reference. * @see #setFirst(Element) * @see linkedList.LinkedListPackage#getList_First() * @model containment="true" * @generated */ Element getFirst(); /** * Sets the value of the '{@link linkedList.List#getFirst First}' containment reference. * * * @param value the new value of the 'First' containment reference. * @see #getFirst() * @generated */ void setFirst(Element value); } // List