/**
* <copyright>
* </copyright>
*
* $Id$
*/
package newprocess;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Expansion</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link newprocess.Expansion#getHasPostcondition <em>Has Postcondition</em>}</li>
* <li>{@link newprocess.Expansion#getExpansionProxy <em>Expansion Proxy</em>}</li>
* </ul>
* </p>
*
* @see newprocess.NewprocessPackage#getExpansion()
* @model
* @generated
*/
public interface Expansion extends Element {
/**
* Returns the value of the '<em><b>Has Postcondition</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Has Postcondition</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Has Postcondition</em>' containment reference.
* @see #setHasPostcondition(Expression)
* @see newprocess.NewprocessPackage#getExpansion_HasPostcondition()
* @model containment="true"
* @generated
*/
Expression getHasPostcondition();
/**
* Sets the value of the '{@link newprocess.Expansion#getHasPostcondition <em>Has Postcondition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Has Postcondition</em>' containment reference.
* @see #getHasPostcondition()
* @generated
*/
void setHasPostcondition(Expression value);
/**
* Returns the value of the '<em><b>Expansion Proxy</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Expansion Proxy</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Expansion Proxy</em>' reference.
* @see #setExpansionProxy(ConditionProxy)
* @see newprocess.NewprocessPackage#getExpansion_ExpansionProxy()
* @model
* @generated
*/
ConditionProxy getExpansionProxy();
/**
* Sets the value of the '{@link newprocess.Expansion#getExpansionProxy <em>Expansion Proxy</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Expansion Proxy</em>' reference.
* @see #getExpansionProxy()
* @generated
*/
void setExpansionProxy(ConditionProxy value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
void performUpdate();
} // Expansion
|