source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/decent/Attribute.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: 3.9 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.EDataType;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Attribute</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.Attribute#getArtifactTypes <em>Artifact Types</em>}</li>
18 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Attribute#getType <em>Type</em>}</li>
19 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Attribute#getDimension <em>Dimension</em>}</li>
20 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Attribute#getDescription <em>Description</em>}</li>
21 * </ul>
22 * </p>
23 *
24 * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAttribute()
25 * @model
26 * @generated
27 */
28public interface Attribute extends Element {
29        /**
30         * Returns the value of the '<em><b>Artifact Types</b></em>' reference list.
31         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.ArtifactType}.
32         * <!-- begin-user-doc -->
33         * <p>
34         * If the meaning of the '<em>Artifact Types</em>' reference list isn't clear,
35         * there really should be more of a description here...
36         * </p>
37         * <!-- end-user-doc -->
38         * @return the value of the '<em>Artifact Types</em>' reference list.
39         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAttribute_ArtifactTypes()
40         * @model ordered="false"
41         * @generated
42         */
43        EList<ArtifactType> getArtifactTypes();
44
45        /**
46         * Returns the value of the '<em><b>Type</b></em>' reference.
47         * <!-- begin-user-doc -->
48         * <p>
49         * If the meaning of the '<em>Type</em>' reference isn't clear,
50         * there really should be more of a description here...
51         * </p>
52         * <!-- end-user-doc -->
53         * @return the value of the '<em>Type</em>' reference.
54         * @see #setType(EDataType)
55         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAttribute_Type()
56         * @model
57         * @generated
58         */
59        EDataType getType();
60
61        /**
62         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Attribute#getType <em>Type</em>}' reference.
63         * <!-- begin-user-doc -->
64         * <!-- end-user-doc -->
65         * @param value the new value of the '<em>Type</em>' reference.
66         * @see #getType()
67         * @generated
68         */
69        void setType(EDataType value);
70
71        /**
72         * Returns the value of the '<em><b>Dimension</b></em>' reference list.
73         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.Dimension}.
74         * <!-- begin-user-doc -->
75         * <p>
76         * If the meaning of the '<em>Dimension</em>' reference list isn't clear,
77         * there really should be more of a description here...
78         * </p>
79         * <!-- end-user-doc -->
80         * @return the value of the '<em>Dimension</em>' reference list.
81         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAttribute_Dimension()
82         * @model ordered="false"
83         * @generated
84         */
85        EList<Dimension> getDimension();
86
87        /**
88         * Returns the value of the '<em><b>Description</b></em>' attribute.
89         * <!-- begin-user-doc -->
90         * <p>
91         * If the meaning of the '<em>Description</em>' attribute isn't clear,
92         * there really should be more of a description here...
93         * </p>
94         * <!-- end-user-doc -->
95         * @return the value of the '<em>Description</em>' attribute.
96         * @see #setDescription(String)
97         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAttribute_Description()
98         * @model
99         * @generated
100         */
101        String getDescription();
102
103        /**
104         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Attribute#getDescription <em>Description</em>}' attribute.
105         * <!-- begin-user-doc -->
106         * <!-- end-user-doc -->
107         * @param value the new value of the '<em>Description</em>' attribute.
108         * @see #getDescription()
109         * @generated
110         */
111        void setDescription(String value);
112
113} // Attribute
Note: See TracBrowser for help on using the repository browser.