source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/decent/Artifact.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: 5.4 KB
Line 
1/**
2 */
3package de.ugoe.cs.cpdp.decentApp.models.decent;
4
5import org.eclipse.emf.common.util.EList;
6
7/**
8 * <!-- begin-user-doc -->
9 * A representation of the model object '<em><b>Artifact</b></em>'.
10 * <!-- end-user-doc -->
11 *
12 * <p>
13 * The following features are supported:
14 * <ul>
15 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getType <em>Type</em>}</li>
16 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getParent <em>Parent</em>}</li>
17 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getChildren <em>Children</em>}</li>
18 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getStates <em>States</em>}</li>
19 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getAttributes <em>Attributes</em>}</li>
20 * </ul>
21 * </p>
22 *
23 * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getArtifact()
24 * @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='typeHierarchy'"
25 *        annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot typeHierarchy='type.containerTypes->includes(parent.type) or parent = null'"
26 * @generated
27 */
28public interface Artifact extends Element {
29        /**
30         * Returns the value of the '<em><b>Type</b></em>' reference.
31         * <!-- begin-user-doc -->
32         * <p>
33         * If the meaning of the '<em>Type</em>' reference isn't clear,
34         * there really should be more of a description here...
35         * </p>
36         * <!-- end-user-doc -->
37         * @return the value of the '<em>Type</em>' reference.
38         * @see #setType(ArtifactType)
39         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getArtifact_Type()
40         * @model
41         * @generated
42         */
43        ArtifactType getType();
44
45        /**
46         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getType <em>Type</em>}' reference.
47         * <!-- begin-user-doc -->
48         * <!-- end-user-doc -->
49         * @param value the new value of the '<em>Type</em>' reference.
50         * @see #getType()
51         * @generated
52         */
53        void setType(ArtifactType value);
54
55        /**
56         * Returns the value of the '<em><b>Parent</b></em>' container reference.
57         * It is bidirectional and its opposite is '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getChildren <em>Children</em>}'.
58         * <!-- begin-user-doc -->
59         * <p>
60         * If the meaning of the '<em>Parent</em>' container reference isn't clear,
61         * there really should be more of a description here...
62         * </p>
63         * <!-- end-user-doc -->
64         * @return the value of the '<em>Parent</em>' container reference.
65         * @see #setParent(Artifact)
66         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getArtifact_Parent()
67         * @see de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getChildren
68         * @model opposite="children" transient="false"
69         * @generated
70         */
71        Artifact getParent();
72
73        /**
74         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getParent <em>Parent</em>}' container reference.
75         * <!-- begin-user-doc -->
76         * <!-- end-user-doc -->
77         * @param value the new value of the '<em>Parent</em>' container reference.
78         * @see #getParent()
79         * @generated
80         */
81        void setParent(Artifact value);
82
83        /**
84         * Returns the value of the '<em><b>Children</b></em>' containment reference list.
85         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact}.
86         * It is bidirectional and its opposite is '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getParent <em>Parent</em>}'.
87         * <!-- begin-user-doc -->
88         * <p>
89         * If the meaning of the '<em>Children</em>' containment reference list isn't clear,
90         * there really should be more of a description here...
91         * </p>
92         * <!-- end-user-doc -->
93         * @return the value of the '<em>Children</em>' containment reference list.
94         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getArtifact_Children()
95         * @see de.ugoe.cs.cpdp.decentApp.models.decent.Artifact#getParent
96         * @model opposite="parent" containment="true"
97         * @generated
98         */
99        EList<Artifact> getChildren();
100
101        /**
102         * Returns the value of the '<em><b>States</b></em>' containment reference list.
103         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.State}.
104         * It is bidirectional and its opposite is '{@link de.ugoe.cs.cpdp.decentApp.models.decent.State#getArtifact <em>Artifact</em>}'.
105         * <!-- begin-user-doc -->
106         * <p>
107         * If the meaning of the '<em>States</em>' containment reference list isn't clear,
108         * there really should be more of a description here...
109         * </p>
110         * <!-- end-user-doc -->
111         * @return the value of the '<em>States</em>' containment reference list.
112         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getArtifact_States()
113         * @see de.ugoe.cs.cpdp.decentApp.models.decent.State#getArtifact
114         * @model opposite="artifact" containment="true"
115         * @generated
116         */
117        EList<State> getStates();
118
119        /**
120         * Returns the value of the '<em><b>Attributes</b></em>' reference list.
121         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.Attribute}.
122         * <!-- begin-user-doc -->
123         * <p>
124         * If the meaning of the '<em>Attributes</em>' reference list isn't clear,
125         * there really should be more of a description here...
126         * </p>
127         * <!-- end-user-doc -->
128         * @return the value of the '<em>Attributes</em>' reference list.
129         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getArtifact_Attributes()
130         * @model
131         * @generated
132         */
133        EList<Attribute> getAttributes();
134
135} // Artifact
Note: See TracBrowser for help on using the repository browser.