blob: 3a5f5332b5a4cedd44e914722bc149701e67663e [file] [log] [blame]
/**
*/
package flowchart;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Flowchart</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link flowchart.Flowchart#getNodes <em>Nodes</em>}</li>
* <li>{@link flowchart.Flowchart#getTransitions <em>Transitions</em>}</li>
* </ul>
* </p>
*
* @see flowchart.FlowchartPackage#getFlowchart()
* @model annotation="gmf.diagram foo='bar'"
* @generated
*/
public interface Flowchart extends EObject
{
/**
* Returns the value of the '<em><b>Nodes</b></em>' containment reference list.
* The list contents are of type {@link flowchart.Node}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Nodes</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Nodes</em>' containment reference list.
* @see flowchart.FlowchartPackage#getFlowchart_Nodes()
* @model containment="true"
* @generated
*/
EList<Node> getNodes();
/**
* Returns the value of the '<em><b>Transitions</b></em>' containment reference list.
* The list contents are of type {@link flowchart.Transition}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Transitions</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Transitions</em>' containment reference list.
* @see flowchart.FlowchartPackage#getFlowchart_Transitions()
* @model containment="true"
* @generated
*/
EList<Transition> getTransitions();
} // Flowchart