LifeCycle.java 6.39 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
 */
package de.hftstuttgart.buildingphysics;

import de.hftstuttgart.cityunits.model.NullableQuantity;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Life Cycle</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link de.hftstuttgart.buildingphysics.LifeCycle#getEmbodiedEnergy <em>Embodied Energy</em>}</li>
 *   <li>{@link de.hftstuttgart.buildingphysics.LifeCycle#getEmbodiedCarbon <em>Embodied Carbon</em>}</li>
 *   <li>{@link de.hftstuttgart.buildingphysics.LifeCycle#getConstructionDescription <em>Construction Description</em>}</li>
 *   <li>{@link de.hftstuttgart.buildingphysics.LifeCycle#getDisposalEnergy <em>Disposal Energy</em>}</li>
 *   <li>{@link de.hftstuttgart.buildingphysics.LifeCycle#getDisposalCarbon <em>Disposal Carbon</em>}</li>
 *   <li>{@link de.hftstuttgart.buildingphysics.LifeCycle#getDisposalDescription <em>Disposal Description</em>}</li>
 * </ul>
 *
 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getLifeCycle()
 * @model
 * @generated
 */
public interface LifeCycle extends EObject {
	/**
	 * Returns the value of the '<em><b>Embodied Energy</b></em>' attribute.
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
33
	 * The default value is <code>"kW*h"</code>.
34
35
36
37
38
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Embodied Energy</em>' attribute.
	 * @see #setEmbodiedEnergy(NullableQuantity)
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getLifeCycle_EmbodiedEnergy()
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
39
	 * @model default="kW*h" dataType="de.hftstuttgart.cityunits.model.quantities.QuantityDouble" required="true"
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
	 * @generated
	 */
	NullableQuantity getEmbodiedEnergy();

	/**
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.LifeCycle#getEmbodiedEnergy <em>Embodied Energy</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Embodied Energy</em>' attribute.
	 * @see #getEmbodiedEnergy()
	 * @generated
	 */
	void setEmbodiedEnergy(NullableQuantity value);

	/**
	 * Returns the value of the '<em><b>Embodied Carbon</b></em>' attribute.
	 * The default value is <code>"kg"</code>.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Embodied Carbon</em>' attribute.
	 * @see #setEmbodiedCarbon(NullableQuantity)
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getLifeCycle_EmbodiedCarbon()
	 * @model default="kg" dataType="de.hftstuttgart.cityunits.model.quantities.QuantityDouble" required="true"
	 * @generated
	 */
	NullableQuantity getEmbodiedCarbon();

	/**
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.LifeCycle#getEmbodiedCarbon <em>Embodied Carbon</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Embodied Carbon</em>' attribute.
	 * @see #getEmbodiedCarbon()
	 * @generated
	 */
	void setEmbodiedCarbon(NullableQuantity value);

	/**
	 * Returns the value of the '<em><b>Construction Description</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Construction Description</em>' attribute.
	 * @see #setConstructionDescription(String)
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getLifeCycle_ConstructionDescription()
	 * @model required="true"
	 * @generated
	 */
	String getConstructionDescription();

	/**
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.LifeCycle#getConstructionDescription <em>Construction Description</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Construction Description</em>' attribute.
	 * @see #getConstructionDescription()
	 * @generated
	 */
	void setConstructionDescription(String value);

	/**
	 * Returns the value of the '<em><b>Disposal Energy</b></em>' attribute.
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
101
	 * The default value is <code>"kW*h"</code>.
102
103
104
105
106
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Disposal Energy</em>' attribute.
	 * @see #setDisposalEnergy(NullableQuantity)
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getLifeCycle_DisposalEnergy()
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
107
	 * @model default="kW*h" dataType="de.hftstuttgart.cityunits.model.quantities.QuantityDouble" required="true"
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
	 * @generated
	 */
	NullableQuantity getDisposalEnergy();

	/**
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.LifeCycle#getDisposalEnergy <em>Disposal Energy</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Disposal Energy</em>' attribute.
	 * @see #getDisposalEnergy()
	 * @generated
	 */
	void setDisposalEnergy(NullableQuantity value);

	/**
	 * Returns the value of the '<em><b>Disposal Carbon</b></em>' attribute.
	 * The default value is <code>"kg"</code>.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Disposal Carbon</em>' attribute.
	 * @see #setDisposalCarbon(NullableQuantity)
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getLifeCycle_DisposalCarbon()
	 * @model default="kg" dataType="de.hftstuttgart.cityunits.model.quantities.QuantityDouble" required="true"
	 * @generated
	 */
	NullableQuantity getDisposalCarbon();

	/**
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.LifeCycle#getDisposalCarbon <em>Disposal Carbon</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Disposal Carbon</em>' attribute.
	 * @see #getDisposalCarbon()
	 * @generated
	 */
	void setDisposalCarbon(NullableQuantity value);

	/**
	 * Returns the value of the '<em><b>Disposal Description</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Disposal Description</em>' attribute.
	 * @see #setDisposalDescription(String)
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getLifeCycle_DisposalDescription()
	 * @model required="true"
	 * @generated
	 */
	String getDisposalDescription();

	/**
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.LifeCycle#getDisposalDescription <em>Disposal Description</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Disposal Description</em>' attribute.
	 * @see #getDisposalDescription()
	 * @generated
	 */
	void setDisposalDescription(String value);

} // LifeCycle