/** * * * * $Id$ */ package org.eclipse.papyrus.infra.emf.newchild; import org.eclipse.emf.common.util.EList; import org.eclipse.papyrus.infra.constraints.DisplayUnit; /** * * A representation of the model object 'Menu Root'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.infra.emf.newchild.NewchildPackage#getMenuRoot() * @model * @generated */ public interface MenuRoot extends MenuContainer, DisplayUnit { /** * Returns the value of the 'Groups' containment reference list. * The list contents are of type {@link org.eclipse.papyrus.infra.emf.newchild.MenuGroup}. * *

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

* * @return the value of the 'Groups' containment reference list. * @see org.eclipse.papyrus.infra.emf.newchild.NewchildPackage#getMenuRoot_Groups() * @model containment="true" * @generated */ EList getGroups(); /** * 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.papyrus.infra.emf.newchild.NewchildPackage#getMenuRoot_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.emf.newchild.MenuRoot#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // MenuRoot