blob: 81e64041b8d3e3ba3864ddef88adec29514dee1d [file] [log] [blame]
/**
*/
package IoTML.Software.Artefact;
import IoTML.Hybrid.PhysicalEntity;
import org.eclipse.uml2.uml.InstanceSpecification;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Virtual Entity</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link IoTML.Software.Artefact.VirtualEntity#getPhisicalEntitySpecification <em>Phisical Entity Specification</em>}</li>
* <li>{@link IoTML.Software.Artefact.VirtualEntity#getPhysicalEntity <em>Physical Entity</em>}</li>
* </ul>
*
* @see IoTML.Software.Artefact.ArtefactPackage#getVirtualEntity()
* @model
* @generated
*/
public interface VirtualEntity extends DigitalArtefact {
/**
* Returns the value of the '<em><b>Phisical Entity Specification</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Phisical Entity Specification</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Phisical Entity Specification</em>' reference.
* @see #setPhisicalEntitySpecification(InstanceSpecification)
* @see IoTML.Software.Artefact.ArtefactPackage#getVirtualEntity_PhisicalEntitySpecification()
* @model ordered="false"
* @generated
*/
InstanceSpecification getPhisicalEntitySpecification();
/**
* Sets the value of the '{@link IoTML.Software.Artefact.VirtualEntity#getPhisicalEntitySpecification <em>Phisical Entity Specification</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Phisical Entity Specification</em>' reference.
* @see #getPhisicalEntitySpecification()
* @generated
*/
void setPhisicalEntitySpecification(InstanceSpecification value);
/**
* Returns the value of the '<em><b>Physical Entity</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Physical Entity</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Physical Entity</em>' reference.
* @see #setPhysicalEntity(PhysicalEntity)
* @see IoTML.Software.Artefact.ArtefactPackage#getVirtualEntity_PhysicalEntity()
* @model ordered="false"
* @generated
*/
PhysicalEntity getPhysicalEntity();
/**
* Sets the value of the '{@link IoTML.Software.Artefact.VirtualEntity#getPhysicalEntity <em>Physical Entity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Physical Entity</em>' reference.
* @see #getPhysicalEntity()
* @generated
*/
void setPhysicalEntity(PhysicalEntity value);
} // VirtualEntity