source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/decent/Location.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.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>Location</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.Location#getType <em>Type</em>}</li>
16 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Location#getProject <em>Project</em>}</li>
17 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.Location#getArtifacts <em>Artifacts</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getLocation()
22 * @model
23 * @generated
24 */
25public interface Location extends Element {
26        /**
27         * Returns the value of the '<em><b>Type</b></em>' reference.
28         * <!-- begin-user-doc -->
29         * <p>
30         * If the meaning of the '<em>Type</em>' reference isn't clear,
31         * there really should be more of a description here...
32         * </p>
33         * <!-- end-user-doc -->
34         * @return the value of the '<em>Type</em>' reference.
35         * @see #setType(ArtifactType)
36         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getLocation_Type()
37         * @model
38         * @generated
39         */
40        ArtifactType getType();
41
42        /**
43         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Location#getType <em>Type</em>}' reference.
44         * <!-- begin-user-doc -->
45         * <!-- end-user-doc -->
46         * @param value the new value of the '<em>Type</em>' reference.
47         * @see #getType()
48         * @generated
49         */
50        void setType(ArtifactType value);
51
52        /**
53         * Returns the value of the '<em><b>Project</b></em>' container reference.
54         * It is bidirectional and its opposite is '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Project#getLocation <em>Location</em>}'.
55         * <!-- begin-user-doc -->
56         * <p>
57         * If the meaning of the '<em>Project</em>' container reference isn't clear,
58         * there really should be more of a description here...
59         * </p>
60         * <!-- end-user-doc -->
61         * @return the value of the '<em>Project</em>' container reference.
62         * @see #setProject(Project)
63         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getLocation_Project()
64         * @see de.ugoe.cs.cpdp.decentApp.models.decent.Project#getLocation
65         * @model opposite="location" required="true" transient="false"
66         * @generated
67         */
68        Project getProject();
69
70        /**
71         * Sets the value of the '{@link de.ugoe.cs.cpdp.decentApp.models.decent.Location#getProject <em>Project</em>}' container reference.
72         * <!-- begin-user-doc -->
73         * <!-- end-user-doc -->
74         * @param value the new value of the '<em>Project</em>' container reference.
75         * @see #getProject()
76         * @generated
77         */
78        void setProject(Project value);
79
80        /**
81         * Returns the value of the '<em><b>Artifacts</b></em>' containment reference list.
82         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.Artifact}.
83         * <!-- begin-user-doc -->
84         * <p>
85         * If the meaning of the '<em>Artifacts</em>' containment reference list isn't clear,
86         * there really should be more of a description here...
87         * </p>
88         * <!-- end-user-doc -->
89         * @return the value of the '<em>Artifacts</em>' containment reference list.
90         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getLocation_Artifacts()
91         * @model containment="true" ordered="false"
92         * @generated
93         */
94        EList<Artifact> getArtifacts();
95
96} // Location
Note: See TracBrowser for help on using the repository browser.