Child: [563632] (diff)

Download this file

Function.java    62 lines (57 with data), 2.1 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>Function</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link epc.Function#getOutputResources <em>Output Resources</em>}</li>
* <li>{@link epc.Function#getInputResources <em>Input Resources</em>}</li>
* </ul>
* </p>
*
* @see epc.EpcPackage#getFunction()
* @model
* @generated
*/
public interface Function extends EPCFlowNode {
/**
* Returns the value of the '<em><b>Output Resources</b></em>' reference list.
* The list contents are of type {@link epc.ResourceOutputConnection}.
* It is bidirectional and its opposite is '{@link epc.ResourceOutputConnection#getSource <em>Source</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Output Resources</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>Output Resources</em>' reference list.
* @see epc.EpcPackage#getFunction_OutputResources()
* @see epc.ResourceOutputConnection#getSource
* @model opposite="source"
* @generated
*/
EList<ResourceOutputConnection> getOutputResources();
/**
* Returns the value of the '<em><b>Input Resources</b></em>' reference list.
* The list contents are of type {@link epc.ResourceInputConnection}.
* It is bidirectional and its opposite is '{@link epc.ResourceInputConnection#getTarget <em>Target</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Input Resources</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>Input Resources</em>' reference list.
* @see epc.EpcPackage#getFunction_InputResources()
* @see epc.ResourceInputConnection#getTarget
* @model opposite="target"
* @generated
*/
EList<ResourceInputConnection> getInputResources();
} // Function