/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Gen Contribution Manager</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Group of UI contribution items * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenContributionManager#getID <em>ID</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenContributionManager#getItems <em>Items</em>}</li> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenContributionManager#getEditorGen <em>Editor Gen</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenContributionManager() * @model abstract="true" * @generated */ public interface GenContributionManager extends EObject { /** * Returns the value of the '<em><b>ID</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>ID</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>ID</em>' attribute. * @see #setID(String) * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenContributionManager_ID() * @model * @generated */ String getID(); /** * Sets the value of the '{@link org.eclipse.gmf.codegen.gmfgen.GenContributionManager#getID <em>ID</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>ID</em>' attribute. * @see #getID() * @generated */ void setID(String value); /** * Returns the value of the '<em><b>Items</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.gmf.codegen.gmfgen.GenContributionItem}. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenContributionItem#getOwner <em>Owner</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Items</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Items</em>' containment reference list. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenContributionManager_Items() * @see org.eclipse.gmf.codegen.gmfgen.GenContributionItem#getOwner * @model opposite="owner" containment="true" * @generated */ EList<GenContributionItem> getItems(); /** * Returns the value of the '<em><b>Editor Gen</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Editor Gen</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Editor Gen</em>' reference. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenContributionManager_EditorGen() * @model resolveProxies="false" required="true" transient="true" changeable="false" volatile="true" derived="true" * @generated */ GenEditorGenerator getEditorGen(); } // GenContributionManager