/**
* <copyright>
* </copyright>
*
* $Id$
*/
package newprocess;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Condition Term</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link newprocess.ConditionTerm#getConditionProxy <em>Condition Proxy</em>}</li>
* </ul>
* </p>
*
* @see newprocess.NewprocessPackage#getConditionTerm()
* @model
* @generated
*/
public interface ConditionTerm extends Term {
/**
* Returns the value of the '<em><b>Condition Proxy</b></em>' reference.
* It is bidirectional and its opposite is '{@link newprocess.ConditionProxy#getConditionTerm <em>Condition Term</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Condition 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>Condition Proxy</em>' reference.
* @see #setConditionProxy(ConditionProxy)
* @see newprocess.NewprocessPackage#getConditionTerm_ConditionProxy()
* @see newprocess.ConditionProxy#getConditionTerm
* @model opposite="conditionTerm"
* @generated
*/
ConditionProxy getConditionProxy();
/**
* Sets the value of the '{@link newprocess.ConditionTerm#getConditionProxy <em>Condition Proxy</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Condition Proxy</em>' reference.
* @see #getConditionProxy()
* @generated
*/
void setConditionProxy(ConditionProxy value);
} // ConditionTerm
|