01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id$
06: */package newprocess;
07:
08: import org.eclipse.emf.common.util.EList;
09: import org.eclipse.emf.ecore.EObject;
10:
11: /**
12: * <!-- begin-user-doc -->
13: * A representation of the model object '<em><b>Globals</b></em>'.
14: * <!-- end-user-doc -->
15: *
16: * <p>
17: * The following features are supported:
18: * <ul>
19: * <li>{@link newprocess.Globals#getHasCondition <em>Has Condition</em>}</li>
20: * <li>{@link newprocess.Globals#getHasLoader <em>Has Loader</em>}</li>
21: * </ul>
22: * </p>
23: *
24: * @see newprocess.NewprocessPackage#getGlobals()
25: * @model
26: * @generated
27: */
28: public interface Globals extends EObject {
29: /**
30: * Returns the value of the '<em><b>Has Condition</b></em>' containment reference list.
31: * The list contents are of type {@link newprocess.Condition}.
32: * <!-- begin-user-doc -->
33: * <p>
34: * If the meaning of the '<em>Has Condition</em>' containment reference isn't clear,
35: * there really should be more of a description here...
36: * </p>
37: * <!-- end-user-doc -->
38: * @return the value of the '<em>Has Condition</em>' containment reference list.
39: * @see newprocess.NewprocessPackage#getGlobals_HasCondition()
40: * @model type="newprocess.Condition" containment="true"
41: * @generated
42: */
43: EList<Condition> getHasCondition();
44:
45: /**
46: * Returns the value of the '<em><b>Has Loader</b></em>' containment reference.
47: * <!-- begin-user-doc -->
48: * <p>
49: * If the meaning of the '<em>Has Loader</em>' containment reference isn't clear,
50: * there really should be more of a description here...
51: * </p>
52: * <!-- end-user-doc -->
53: * @return the value of the '<em>Has Loader</em>' containment reference.
54: * @see #setHasLoader(Loader)
55: * @see newprocess.NewprocessPackage#getGlobals_HasLoader()
56: * @model containment="true"
57: * @generated
58: */
59: Loader getHasLoader();
60:
61: /**
62: * Sets the value of the '{@link newprocess.Globals#getHasLoader <em>Has Loader</em>}' containment reference.
63: * <!-- begin-user-doc -->
64: * <!-- end-user-doc -->
65: * @param value the new value of the '<em>Has Loader</em>' containment reference.
66: * @see #getHasLoader()
67: * @generated
68: */
69: void setHasLoader(Loader value);
70:
71: } // Globals
|