/** */ 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 'Host Type'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getHostType() * @model * @generated */ public interface HostType extends EObject { /** * Returns the value of the 'Default Memory' attribute. * *

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

* * @return the value of the 'Default Memory' attribute. * @see #setDefaultMemory(int) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getHostType_DefaultMemory() * @model required="true" * @generated */ int getDefaultMemory(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.HostType#getDefaultMemory Default Memory}' attribute. * * * @param value the new value of the 'Default Memory' attribute. * @see #getDefaultMemory() * @generated */ void setDefaultMemory(int value); /** * Returns the value of the 'Default Hdd' attribute. * *

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

* * @return the value of the 'Default Hdd' attribute. * @see #setDefaultHdd(int) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getHostType_DefaultHdd() * @model required="true" * @generated */ int getDefaultHdd(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.HostType#getDefaultHdd Default Hdd}' attribute. * * * @param value the new value of the 'Default Hdd' attribute. * @see #getDefaultHdd() * @generated */ void setDefaultHdd(int value); /** * Returns the value of the 'Instances' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.cps.HostInstance}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.cps.HostInstance#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#getHostType_Instances() * @see hu.bme.mit.inf.dslreasoner.domains.cps.HostInstance#getType * @model opposite="type" containment="true" * @generated */ EList getInstances(); /** * Returns the value of the 'Cost' attribute. * *

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

* * @return the value of the 'Cost' attribute. * @see #setCost(int) * @see hu.bme.mit.inf.dslreasoner.domains.cps.CpsPackage#getHostType_Cost() * @model required="true" * @generated */ int getCost(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.cps.HostType#getCost Cost}' attribute. * * * @param value the new value of the 'Cost' attribute. * @see #getCost() * @generated */ void setCost(int value); } // HostType