MaterialCatalog.java 1.8 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 */
package de.hftstuttgart.buildingphysics;

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

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Material Catalog</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link de.hftstuttgart.buildingphysics.MaterialCatalog#getMaterialCategories <em>Material Categories</em>}</li>
17
 *   <li>{@link de.hftstuttgart.buildingphysics.MaterialCatalog#getConstructionCategories <em>Construction Categories</em>}</li>
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 * </ul>
 *
 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterialCatalog()
 * @model
 * @generated
 */
public interface MaterialCatalog extends Catalog {
	/**
	 * Returns the value of the '<em><b>Material Categories</b></em>' containment reference list.
	 * The list contents are of type {@link de.hftstuttgart.buildingphysics.MaterialCategory}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Material Categories</em>' containment reference list.
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterialCatalog_MaterialCategories()
	 * @model containment="true"
	 * @generated
	 */
	EList<MaterialCategory> getMaterialCategories();

37
38
39
40
41
42
43
	/**
	 * Returns the value of the '<em><b>Construction Categories</b></em>' containment reference list.
	 * The list contents are of type {@link de.hftstuttgart.buildingphysics.ConstructionCategory}.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Construction Categories</em>' containment reference list.
	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMaterialCatalog_ConstructionCategories()
44
	 * @model containment="true"
45
46
47
48
	 * @generated
	 */
	EList<ConstructionCategory> getConstructionCategories();

49
} // MaterialCatalog