/** * * * * $Id: MultiNonContainedElement.java,v 1.4 2008-10-27 13:36:18 smcduff Exp $ */ package org.eclipse.emf.cdo.tests.model4; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object 'Multi Non Contained Element'. *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.tests.model4.model4Package#getMultiNonContainedElement() * @model * @generated */ public interface MultiNonContainedElement extends EObject { /** * 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.model4.model4Package#getMultiNonContainedElement_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model4.MultiNonContainedElement#getName Name}' * attribute. * * @param value * the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Parent' reference. It is bidirectional and its opposite is ' * {@link org.eclipse.emf.cdo.tests.model4.RefMultiNonContained#getElements Elements}'. *

* 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' reference. * @see #setParent(RefMultiNonContained) * @see org.eclipse.emf.cdo.tests.model4.model4Package#getMultiNonContainedElement_Parent() * @see org.eclipse.emf.cdo.tests.model4.RefMultiNonContained#getElements * @model opposite="elements" * @generated */ RefMultiNonContained getParent(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model4.MultiNonContainedElement#getParent Parent}' * reference. * * @param value * the new value of the 'Parent' reference. * @see #getParent() * @generated */ void setParent(RefMultiNonContained value); } // MultiNonContainedElement