Download this file

BusinessProcess.java    43 lines (39 with data), 1.4 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
/**
*/
package genericbcm;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Business Process</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link genericbcm.BusinessProcess#getResources <em>Resources</em>}</li>
* </ul>
* </p>
*
* @see genericbcm.GenericbcmPackage#getBusinessProcess()
* @model
* @generated
*/
public interface BusinessProcess extends Nameable, DerivedMetricsSetable {
/**
* Returns the value of the '<em><b>Resources</b></em>' containment reference list.
* The list contents are of type {@link genericbcm.BusinessProcessOnUnitLink}.
* It is bidirectional and its opposite is '{@link genericbcm.BusinessProcessOnUnitLink#getFrom <em>From</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Resources</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Resources</em>' containment reference list.
* @see genericbcm.GenericbcmPackage#getBusinessProcess_Resources()
* @see genericbcm.BusinessProcessOnUnitLink#getFrom
* @model opposite="from" containment="true"
* @generated
*/
EList<BusinessProcessOnUnitLink> getResources();
} // BusinessProcess