/**
*/
package activitydiagram;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Input Value</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link activitydiagram.InputValue#getValue <em>Value</em>}</li>
* <li>{@link activitydiagram.InputValue#getVariable <em>Variable</em>}</li>
* </ul>
*
* @see activitydiagram.ActivitydiagramPackage#getInputValue()
* @model
* @generated
*/
public interface InputValue extends EObject {
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</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>Value</em>' containment reference.
* @see #setValue(Value)
* @see activitydiagram.ActivitydiagramPackage#getInputValue_Value()
* @model containment="true" required="true"
* @generated
*/
Value getValue();
/**
* Sets the value of the '{@link activitydiagram.InputValue#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(Value value);
/**
* Returns the value of the '<em><b>Variable</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Variable</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Variable</em>' reference.
* @see #setVariable(Variable)
* @see activitydiagram.ActivitydiagramPackage#getInputValue_Variable()
* @model required="true"
* @generated
*/
Variable getVariable();
/**
* Sets the value of the '{@link activitydiagram.InputValue#getVariable <em>Variable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Variable</em>' reference.
* @see #getVariable()
* @generated
*/
void setVariable(Variable value);
} // InputValue