Download this file

Page.java    58 lines (53 with data), 1.6 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
*/
package epc;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Page</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link Page#getElements <em>Elements</em>}</li>
* <li>{@link Page#getConnections <em>Connections</em>}</li>
* </ul>
* </p>
*
* @see epc.EpcPackage#getPage()
* @model
* @generated
*/
public interface Page extends EPCObject {
/**
* Returns the value of the '<em><b>Elements</b></em>' reference list.
* The list contents are of type {@link epc.EPCDiagramElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Elements</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Elements</em>' reference list.
* @see epc.EpcPackage#getPage_Elements()
* @model
* @generated
*/
EList<EPCDiagramElement> getElements();
/**
* Returns the value of the '<em><b>Connections</b></em>' reference list.
* The list contents are of type {@link epc.FlowConnection}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Connections</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Connections</em>' reference list.
* @see epc.EpcPackage#getPage_Connections()
* @model
* @generated
*/
EList<FlowConnection> getConnections();
} // Page