Switch to unified view

a b/src/main/java/genericbcm/BusinessProcess.java
1
/**
2
 */
3
package genericbcm;
4
5
import org.eclipse.emf.common.util.EList;
6
7
/**
8
 * <!-- begin-user-doc -->
9
 * A representation of the model object '<em><b>Business Process</b></em>'.
10
 * <!-- end-user-doc -->
11
 *
12
 * <p>
13
 * The following features are supported:
14
 * <ul>
15
 *   <li>{@link genericbcm.BusinessProcess#getResources <em>Resources</em>}</li>
16
 * </ul>
17
 * </p>
18
 *
19
 * @see genericbcm.GenericbcmPackage#getBusinessProcess()
20
 * @model
21
 * @generated
22
 */
23
public interface BusinessProcess extends Nameable, DerivedMetricsSetable {
24
  /**
25
   * Returns the value of the '<em><b>Resources</b></em>' containment reference list.
26
   * The list contents are of type {@link genericbcm.BusinessProcessOnUnitLink}.
27
   * It is bidirectional and its opposite is '{@link genericbcm.BusinessProcessOnUnitLink#getFrom <em>From</em>}'.
28
   * <!-- begin-user-doc -->
29
   * <p>
30
   * If the meaning of the '<em>Resources</em>' containment reference list 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>Resources</em>' containment reference list.
35
   * @see genericbcm.GenericbcmPackage#getBusinessProcess_Resources()
36
   * @see genericbcm.BusinessProcessOnUnitLink#getFrom
37
   * @model opposite="from" containment="true"
38
   * @generated
39
   */
40
  EList<BusinessProcessOnUnitLink> getResources();
41
42
} // BusinessProcess