/** * Copyright (c) 2015 CEA LIST. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * CEA LIST - Initial API and implementation * */ package org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Diagram Expansion'. * * *

* The following features are supported: *

* * * @see org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.ExpansionmodelPackage#getDiagramExpansion() * @model * @generated */ public interface DiagramExpansion extends EObject { /** * Returns the value of the 'Usages' containment reference list. * The list contents are of type {@link org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.UseContext}. * *

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

* * @return the value of the 'Usages' containment reference list. * @see org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.ExpansionmodelPackage#getDiagramExpansion_Usages() * @model containment="true" ordered="false" * @generated */ EList getUsages(); /** * Returns the value of the 'Libraries' containment reference list. * The list contents are of type {@link org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.GraphicalElementLibrary}. * *

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

* * @return the value of the 'Libraries' containment reference list. * @see org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.ExpansionmodelPackage#getDiagramExpansion_Libraries() * @model containment="true" ordered="false" * @generated */ EList getLibraries(); /** * Returns the value of the 'ID' attribute. * *

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

* * @return the value of the 'ID' attribute. * @see #setID(String) * @see org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.ExpansionmodelPackage#getDiagramExpansion_ID() * @model required="true" ordered="false" * @generated */ String getID(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.DiagramExpansion#getID ID}' attribute. * * * @param value the new value of the 'ID' attribute. * @see #getID() * @generated */ void setID(String value); /** * Returns the value of the 'Description' attribute. * *

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

* * @return the value of the 'Description' attribute. * @see #setDescription(String) * @see org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.ExpansionmodelPackage#getDiagramExpansion_Description() * @model ordered="false" * @generated */ String getDescription(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.gmfdiag.expansion.expansionmodel.DiagramExpansion#getDescription Description}' attribute. * * * @param value the new value of the 'Description' attribute. * @see #getDescription() * @generated */ void setDescription(String value); } // DiagramExpansion