source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/decent/AttributePool.java

Last change on this file was 36, checked in by ftrautsch, 9 years ago

integration of decent models in crosspare

  • Property svn:mime-type set to text/plain
File size: 1.3 KB
Line 
1/**
2 */
3package de.ugoe.cs.cpdp.decentApp.models.decent;
4
5import org.eclipse.emf.common.util.EList;
6
7import org.eclipse.emf.ecore.EObject;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Attribute Pool</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * <ul>
17 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.AttributePool#getAttributes <em>Attributes</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAttributePool()
22 * @model
23 * @generated
24 */
25public interface AttributePool extends EObject {
26        /**
27         * Returns the value of the '<em><b>Attributes</b></em>' containment reference list.
28         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.Attribute}.
29         * <!-- begin-user-doc -->
30         * <p>
31         * If the meaning of the '<em>Attributes</em>' containment reference list isn't clear,
32         * there really should be more of a description here...
33         * </p>
34         * <!-- end-user-doc -->
35         * @return the value of the '<em>Attributes</em>' containment reference list.
36         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAttributePool_Attributes()
37         * @model containment="true"
38         * @generated
39         */
40        EList<Attribute> getAttributes();
41
42} // AttributePool
Note: See TracBrowser for help on using the repository browser.