/** * generated by Xtext 2.12.0 */ package com.minres.rdl.rdl; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Named Instantiation'. * * *

* The following features are supported: *

* * * @see com.minres.rdl.rdl.RdlPackage#getNamedInstantiation() * @model * @generated */ public interface NamedInstantiation extends EObject { /** * Returns the value of the 'External' attribute. * *

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

* * @return the value of the 'External' attribute. * @see #setExternal(boolean) * @see com.minres.rdl.rdl.RdlPackage#getNamedInstantiation_External() * @model * @generated */ boolean isExternal(); /** * Sets the value of the '{@link com.minres.rdl.rdl.NamedInstantiation#isExternal External}' attribute. * * * @param value the new value of the 'External' attribute. * @see #isExternal() * @generated */ void setExternal(boolean value); /** * Returns the value of the 'Internal' attribute. * *

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

* * @return the value of the 'Internal' attribute. * @see #setInternal(boolean) * @see com.minres.rdl.rdl.RdlPackage#getNamedInstantiation_Internal() * @model * @generated */ boolean isInternal(); /** * Sets the value of the '{@link com.minres.rdl.rdl.NamedInstantiation#isInternal Internal}' attribute. * * * @param value the new value of the 'Internal' attribute. * @see #isInternal() * @generated */ void setInternal(boolean value); /** * Returns the value of the 'Alias' attribute. * *

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

* * @return the value of the 'Alias' attribute. * @see #setAlias(String) * @see com.minres.rdl.rdl.RdlPackage#getNamedInstantiation_Alias() * @model * @generated */ String getAlias(); /** * Sets the value of the '{@link com.minres.rdl.rdl.NamedInstantiation#getAlias Alias}' attribute. * * * @param value the new value of the 'Alias' attribute. * @see #getAlias() * @generated */ void setAlias(String value); /** * Returns the value of the 'Component' reference. * *

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

* * @return the value of the 'Component' reference. * @see #setComponent(ComponentDefinition) * @see com.minres.rdl.rdl.RdlPackage#getNamedInstantiation_Component() * @model * @generated */ ComponentDefinition getComponent(); /** * Sets the value of the '{@link com.minres.rdl.rdl.NamedInstantiation#getComponent Component}' reference. * * * @param value the new value of the 'Component' reference. * @see #getComponent() * @generated */ void setComponent(ComponentDefinition value); /** * Returns the value of the 'Component Instances' containment reference list. * The list contents are of type {@link com.minres.rdl.rdl.ComponentInstance}. * *

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

* * @return the value of the 'Component Instances' containment reference list. * @see com.minres.rdl.rdl.RdlPackage#getNamedInstantiation_ComponentInstances() * @model containment="true" * @generated */ EList getComponentInstances(); } // NamedInstantiation