01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id$
06: */package newprocess;
07:
08: /**
09: * <!-- begin-user-doc -->
10: * A representation of the model object '<em><b>Conclusion</b></em>'.
11: * <!-- end-user-doc -->
12: *
13: * <p>
14: * The following features are supported:
15: * <ul>
16: * <li>{@link newprocess.Conclusion#getHasPrecondition <em>Has Precondition</em>}</li>
17: * <li>{@link newprocess.Conclusion#getConclusionProxy <em>Conclusion Proxy</em>}</li>
18: * </ul>
19: * </p>
20: *
21: * @see newprocess.NewprocessPackage#getConclusion()
22: * @model
23: * @generated
24: */
25: public interface Conclusion extends Element {
26: /**
27: * Returns the value of the '<em><b>Has Precondition</b></em>' containment reference.
28: * <!-- begin-user-doc -->
29: * <p>
30: * If the meaning of the '<em>Has Precondition</em>' containment reference 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>Has Precondition</em>' containment reference.
35: * @see #setHasPrecondition(Expression)
36: * @see newprocess.NewprocessPackage#getConclusion_HasPrecondition()
37: * @model containment="true"
38: * @generated
39: */
40: Expression getHasPrecondition();
41:
42: /**
43: * Sets the value of the '{@link newprocess.Conclusion#getHasPrecondition <em>Has Precondition</em>}' containment reference.
44: * <!-- begin-user-doc -->
45: * <!-- end-user-doc -->
46: * @param value the new value of the '<em>Has Precondition</em>' containment reference.
47: * @see #getHasPrecondition()
48: * @generated
49: */
50: void setHasPrecondition(Expression value);
51:
52: /**
53: * Returns the value of the '<em><b>Conclusion Proxy</b></em>' reference.
54: * <!-- begin-user-doc -->
55: * <p>
56: * If the meaning of the '<em>Conclusion Proxy</em>' reference isn't clear,
57: * there really should be more of a description here...
58: * </p>
59: * <!-- end-user-doc -->
60: * @return the value of the '<em>Conclusion Proxy</em>' reference.
61: * @see #setConclusionProxy(ConditionProxy)
62: * @see newprocess.NewprocessPackage#getConclusion_ConclusionProxy()
63: * @model
64: * @generated
65: */
66: ConditionProxy getConclusionProxy();
67:
68: /**
69: * Sets the value of the '{@link newprocess.Conclusion#getConclusionProxy <em>Conclusion Proxy</em>}' reference.
70: * <!-- begin-user-doc -->
71: * <!-- end-user-doc -->
72: * @param value the new value of the '<em>Conclusion Proxy</em>' reference.
73: * @see #getConclusionProxy()
74: * @generated
75: */
76: void setConclusionProxy(ConditionProxy value);
77:
78: /**
79: * <!-- begin-user-doc -->
80: * <!-- end-user-doc -->
81: * @model
82: * @generated
83: */
84: void performUpdate();
85:
86: } // Conclusion
|