Construction.java 2.67 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
/**
 */
package de.hftstuttgart.buildingphysics;

import org.eclipse.emf.common.util.EList;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
11
 * A representation of the model object '<em><b>Construction</b></em>'.
12
13
14
15
16
17
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
18
19
20
 *   <li>{@link de.hftstuttgart.buildingphysics.Construction#getConstructionId <em>Construction Id</em>}</li>
 *   <li>{@link de.hftstuttgart.buildingphysics.Construction#getName <em>Name</em>}</li>
 *   <li>{@link de.hftstuttgart.buildingphysics.Construction#getLayers <em>Layers</em>}</li>
21
22
 * </ul>
 *
23
 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction()
24
25
26
 * @model
 * @generated
 */
27
public interface Construction extends EObject {
28
	/**
29
	 * Returns the value of the '<em><b>Construction Id</b></em>' attribute.
30
31
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
32
33
34
	 * @return the value of the '<em>Construction Id</em>' attribute.
	 * @see #setConstructionId(String)
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_ConstructionId()
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
35
	 * @model id="true" required="true"
36
37
	 * @generated
	 */
38
	String getConstructionId();
39
40

	/**
41
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Construction#getConstructionId <em>Construction Id</em>}' attribute.
42
43
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
44
45
	 * @param value the new value of the '<em>Construction Id</em>' attribute.
	 * @see #getConstructionId()
46
47
	 * @generated
	 */
48
	void setConstructionId(String value);
49
50
51
52
53
54
55

	/**
	 * Returns the value of the '<em><b>Name</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Name</em>' attribute.
	 * @see #setName(String)
56
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_Name()
57
58
59
60
61
62
	 * @model required="true"
	 * @generated
	 */
	String getName();

	/**
63
	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Construction#getName <em>Name</em>}' attribute.
64
65
66
67
68
69
70
71
72
73
74
75
76
77
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Name</em>' attribute.
	 * @see #getName()
	 * @generated
	 */
	void setName(String value);

	/**
	 * Returns the value of the '<em><b>Layers</b></em>' containment reference list.
	 * The list contents are of type {@link de.hftstuttgart.buildingphysics.Layer}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Layers</em>' containment reference list.
78
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_Layers()
79
80
81
82
83
	 * @model containment="true" required="true"
	 * @generated
	 */
	EList<Layer> getLayers();

84
} // Construction