/** */ package de.hftstuttgart.buildingphysics; import de.hftstuttgart.cityunits.model.NullableQuantity; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Material'. * * *

* The following features are supported: *

* * * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterial() * @model * @generated */ public interface Material extends EObject { /** * Returns the value of the 'Id' attribute. * * * @return the value of the 'Id' attribute. * @see #setId(int) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterial_Id() * @model id="true" required="true" * @generated */ int getId(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Material#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(int value); /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterial_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Material#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Density' attribute. * * * @return the value of the 'Density' attribute. * @see #setDensity(double) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterial_Density() * @model required="true" * @generated */ double getDensity(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Material#getDensity Density}' attribute. * * * @param value the new value of the 'Density' attribute. * @see #getDensity() * @generated */ void setDensity(double value); /** * Returns the value of the 'Heat Capacity' attribute. * The default value is "0.0 kW". * * * @return the value of the 'Heat Capacity' attribute. * @see #setHeatCapacity(NullableQuantity) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterial_HeatCapacity() * @model default="0.0 kW" dataType="de.hftstuttgart.cityunits.model.quantities.QuantityDouble" required="true" * @generated */ NullableQuantity getHeatCapacity(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Material#getHeatCapacity Heat Capacity}' attribute. * * * @param value the new value of the 'Heat Capacity' attribute. * @see #getHeatCapacity() * @generated */ void setHeatCapacity(NullableQuantity value); /** * Returns the value of the 'Conductivity' attribute. * * * @return the value of the 'Conductivity' attribute. * @see #setConductivity(double) * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterial_Conductivity() * @model required="true" * @generated */ double getConductivity(); /** * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Material#getConductivity Conductivity}' attribute. * * * @param value the new value of the 'Conductivity' attribute. * @see #getConductivity() * @generated */ void setConductivity(double value); } // Material