/** */ package hu.bme.mit.inf.dslreasoner.domains.cps; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Application Type'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getApplicationType() * @model * @generated */ public interface ApplicationType extends EObject { /** * Returns the value of the 'Instances' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getType Type}'. * *

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

* * @return the value of the 'Instances' containment reference list. * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getApplicationType_Instances() * @see hu.bme.mit.inf.dslreasoner.domains.cps.ApplicationInstance#getType * @model opposite="type" containment="true" * @generated */ EList getInstances(); /** * Returns the value of the 'Requirements' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.cps.ResourceRequirement}. * *

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

* * @return the value of the 'Requirements' containment reference list. * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getApplicationType_Requirements() * @model containment="true" * @generated */ EList getRequirements(); } // ApplicationType