/**
* <copyright>
* </copyright>
*
* $Id$
*/
package newprocess;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Condition Proxy</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link newprocess.ConditionProxy#getCondition <em>Condition</em>}</li>
* <li>{@link newprocess.ConditionProxy#isInverted <em>Inverted</em>}</li>
* <li>{@link newprocess.ConditionProxy#getProxyName <em>Proxy Name</em>}</li>
* <li>{@link newprocess.ConditionProxy#getConditionTerm <em>Condition Term</em>}</li>
* </ul>
* </p>
*
* @see newprocess.NewprocessPackage#getConditionProxy()
* @model
* @generated
*/
public interface ConditionProxy extends EObject {
/**
* Returns the value of the '<em><b>Condition</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Condition</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</em>' reference.
* @see #setCondition(Condition)
* @see newprocess.NewprocessPackage#getConditionProxy_Condition()
* @model
* @generated
*/
Condition getCondition();
/**
* Sets the value of the '{@link newprocess.ConditionProxy#getCondition <em>Condition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Condition</em>' reference.
* @see #getCondition()
* @generated
*/
void setCondition(Condition value);
/**
* Returns the value of the '<em><b>Inverted</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Inverted</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Inverted</em>' attribute.
* @see #setInverted(boolean)
* @see newprocess.NewprocessPackage#getConditionProxy_Inverted()
* @model
* @generated
*/
boolean isInverted();
/**
* Sets the value of the '{@link newprocess.ConditionProxy#isInverted <em>Inverted</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Inverted</em>' attribute.
* @see #isInverted()
* @generated
*/
void setInverted(boolean value);
/**
* Returns the value of the '<em><b>Proxy Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Proxy Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Proxy Name</em>' attribute.
* @see #setProxyName(String)
* @see newprocess.NewprocessPackage#getConditionProxy_ProxyName()
* @model
* @generated
*/
String getProxyName();
/**
* Sets the value of the '{@link newprocess.ConditionProxy#getProxyName <em>Proxy Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Proxy Name</em>' attribute.
* @see #getProxyName()
* @generated
*/
void setProxyName(String value);
/**
* Returns the value of the '<em><b>Condition Term</b></em>' reference list.
* The list contents are of type {@link newprocess.ConditionTerm}.
* It is bidirectional and its opposite is '{@link newprocess.ConditionTerm#getConditionProxy <em>Condition Proxy</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Condition Term</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 Term</em>' reference list.
* @see newprocess.NewprocessPackage#getConditionProxy_ConditionTerm()
* @see newprocess.ConditionTerm#getConditionProxy
* @model type="newprocess.ConditionTerm" opposite="conditionProxy"
* @generated
*/
EList<ConditionTerm> getConditionTerm();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
void performUpdate();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
void updateName();
} // ConditionProxy
|