/** */ package de.hftstuttgart.buildingphysics; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Construction'. * * *

* The following features are supported: *

* * * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction() * @model * @generated */ public interface Construction extends EObject { /** * Returns the value of the 'Construction Id' attribute. * * * @return the value of the 'Construction Id' attribute. * @see #setConstructionId(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_ConstructionId() * @model id="true" required="true" * @generated */ String getConstructionId(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Construction#getConstructionId Construction Id}' attribute. * * * @param value the new value of the 'Construction Id' attribute. * @see #getConstructionId() * @generated */ void setConstructionId(String value); /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Construction#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Layers' containment reference list. * The list contents are of type {@link de.hftstuttgart.buildingphysics.Layer}. * * * @return the value of the 'Layers' containment reference list. * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_Layers() * @model containment="true" required="true" * @generated */ EList getLayers(); } // Construction