/** * <copyright> * </copyright> * * $Id$ */ package activityDiagram; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Control Flow</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link activityDiagram.ControlFlow#getSource <em>Source</em>}</li> * <li>{@link activityDiagram.ControlFlow#getTarget <em>Target</em>}</li> * <li>{@link activityDiagram.ControlFlow#getCondition <em>Condition</em>}</li> * <li>{@link activityDiagram.ControlFlow#getActivity <em>Activity</em>}</li> * </ul> * </p> * * @see activityDiagram.ActivityDiagramPackage#getControlFlow() * @model * @generated */ public interface ControlFlow extends Element { /** * Returns the value of the '<em><b>Source</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Source</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Source</em>' reference. * @see #setSource(Element) * @see activityDiagram.ActivityDiagramPackage#getControlFlow_Source() * @model * @generated */ Element getSource(); /** * Sets the value of the '{@link activityDiagram.ControlFlow#getSource <em>Source</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Source</em>' reference. * @see #getSource() * @generated */ void setSource(Element value); /** * Returns the value of the '<em><b>Target</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Target</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Target</em>' reference. * @see #setTarget(Element) * @see activityDiagram.ActivityDiagramPackage#getControlFlow_Target() * @model * @generated */ Element getTarget(); /** * Sets the value of the '{@link activityDiagram.ControlFlow#getTarget <em>Target</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Target</em>' reference. * @see #getTarget() * @generated */ void setTarget(Element value); /** * Returns the value of the '<em><b>Condition</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Condition</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Condition</em>' attribute. * @see #setCondition(String) * @see activityDiagram.ActivityDiagramPackage#getControlFlow_Condition() * @model * @generated */ String getCondition(); /** * Sets the value of the '{@link activityDiagram.ControlFlow#getCondition <em>Condition</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Condition</em>' attribute. * @see #getCondition() * @generated */ void setCondition(String value); /** * Returns the value of the '<em><b>Activity</b></em>' container reference. * It is bidirectional and its opposite is '{@link activityDiagram.Activity#getFlows <em>Flows</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Activity</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Activity</em>' container reference. * @see #setActivity(Activity) * @see activityDiagram.ActivityDiagramPackage#getControlFlow_Activity() * @see activityDiagram.Activity#getFlows * @model opposite="flows" transient="false" * @generated */ Activity getActivity(); /** * Sets the value of the '{@link activityDiagram.ControlFlow#getActivity <em>Activity</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Activity</em>' container reference. * @see #getActivity() * @generated */ void setActivity(Activity value); } // ControlFlow