/** * * * * $Id: MultiContainedElement.java,v 1.3 2008-09-18 12:56:50 estepper Exp $ */ package org.eclipse.emf.cdo.tests.model4; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object 'Multi Contained Element'. *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.tests.model4.model4Package#getMultiContainedElement() * @model * @generated */ public interface MultiContainedElement 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#getMultiContainedElement_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model4.MultiContainedElement#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' container reference. It is bidirectional and its opposite is ' * {@link org.eclipse.emf.cdo.tests.model4.RefMultiContained#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' container reference. * @see #setParent(RefMultiContained) * @see org.eclipse.emf.cdo.tests.model4.model4Package#getMultiContainedElement_Parent() * @see org.eclipse.emf.cdo.tests.model4.RefMultiContained#getElements * @model opposite="elements" transient="false" * @generated */ RefMultiContained getParent(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.tests.model4.MultiContainedElement#getParent Parent}' * container reference. * * @param value * the new value of the 'Parent' container reference. * @see #getParent() * @generated */ void setParent(RefMultiContained value); } // MultiContainedElement