Child: [563632] (diff)

Download this file

EPCFlowNode.java    62 lines (57 with data), 1.9 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
58
59
60
61
/**
*/
package epc;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>EPC Flow Node</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link epc.EPCFlowNode#getIncoming <em>Incoming</em>}</li>
* <li>{@link epc.EPCFlowNode#getOutgoing <em>Outgoing</em>}</li>
* </ul>
* </p>
*
* @see epc.EpcPackage#getEPCFlowNode()
* @model abstract="true"
* @generated
*/
public interface EPCFlowNode extends EPCDiagramElement {
/**
* Returns the value of the '<em><b>Incoming</b></em>' reference list.
* The list contents are of type {@link epc.FlowConnection}.
* It is bidirectional and its opposite is '{@link epc.FlowConnection#getTarget <em>Target</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Incoming</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>Incoming</em>' reference list.
* @see epc.EpcPackage#getEPCFlowNode_Incoming()
* @see epc.FlowConnection#getTarget
* @model opposite="target"
* @generated
*/
EList<FlowConnection> getIncoming();
/**
* Returns the value of the '<em><b>Outgoing</b></em>' reference list.
* The list contents are of type {@link epc.FlowConnection}.
* It is bidirectional and its opposite is '{@link epc.FlowConnection#getSource <em>Source</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Outgoing</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>Outgoing</em>' reference list.
* @see epc.EpcPackage#getEPCFlowNode_Outgoing()
* @see epc.FlowConnection#getSource
* @model opposite="source"
* @generated
*/
EList<FlowConnection> getOutgoing();
} // EPCFlowNode