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

* The following features are supported: *

* * * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMounting() * @model * @generated */ public interface Mounting extends EObject { /** * Returns the value of the 'Mounting Id' attribute. * * * @return the value of the 'Mounting Id' attribute. * @see #setMountingId(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMounting_MountingId() * @model id="true" required="true" * @generated */ String getMountingId(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Mounting#getMountingId Mounting Id}' attribute. * * * @param value the new value of the 'Mounting Id' attribute. * @see #getMountingId() * @generated */ void setMountingId(String value); /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMounting_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Mounting#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#getMounting_Layers() * @model containment="true" required="true" * @generated */ EList getLayers(); } // Mounting