Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 7367c7b5e6d444cc5706d6de9e19682b0efafac8 (plain) (tree)
1
2
3
4
   
                     
   
                                        











                                                                      
                                                                     




                                        
       
       




                                                                                                                   
        
  
                                                                  






                                                                                  
                                                                                 






                                                                           
                                                                           






                                                                                     
                                                                                   






                                                                                     
                                                                             






                                                                                     
                                                                                       






                                                                              
                                                                             






                                                                                       
                                                                                      






                                                                                
                                                                                






                                                                                               
                                                                                             






                                                                                        
                                                                                       





                                                   
/**
 * generated by Xtext
 */
package org.eclipse.etrice.core.fsm.fSM;

import org.eclipse.emf.common.util.EList;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>State Graph</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * <br>A state graph is a directed graph composed of
 * {@link StateGraphNode}s as nodes and {@link Transition}s as edges.
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link org.eclipse.etrice.core.fsm.fSM.StateGraph#getStates <em>States</em>}</li>
 *   <li>{@link org.eclipse.etrice.core.fsm.fSM.StateGraph#getTrPoints <em>Tr Points</em>}</li>
 *   <li>{@link org.eclipse.etrice.core.fsm.fSM.StateGraph#getChPoints <em>Ch Points</em>}</li>
 *   <li>{@link org.eclipse.etrice.core.fsm.fSM.StateGraph#getTransitions <em>Transitions</em>}</li>
 *   <li>{@link org.eclipse.etrice.core.fsm.fSM.StateGraph#getRefinedTransitions <em>Refined Transitions</em>}</li>
 * </ul>
 *
 * @see org.eclipse.etrice.core.fsm.fSM.FSMPackage#getStateGraph()
 * @model
 * @generated
 */
public interface StateGraph extends EObject
{
  /**
   * Returns the value of the '<em><b>States</b></em>' containment reference list.
   * The list contents are of type {@link org.eclipse.etrice.core.fsm.fSM.State}.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * <br>This is a list of all states of this state graph.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>States</em>' containment reference list.
   * @see org.eclipse.etrice.core.fsm.fSM.FSMPackage#getStateGraph_States()
   * @model containment="true"
   * @generated
   */
  EList<State> getStates();

  /**
   * Returns the value of the '<em><b>Tr Points</b></em>' containment reference list.
   * The list contents are of type {@link org.eclipse.etrice.core.fsm.fSM.TrPoint}.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * <br>This is a list of all transition, entry and exit points of this state graph.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>Tr Points</em>' containment reference list.
   * @see org.eclipse.etrice.core.fsm.fSM.FSMPackage#getStateGraph_TrPoints()
   * @model containment="true"
   * @generated
   */
  EList<TrPoint> getTrPoints();

  /**
   * Returns the value of the '<em><b>Ch Points</b></em>' containment reference list.
   * The list contents are of type {@link org.eclipse.etrice.core.fsm.fSM.ChoicePoint}.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * <br>This is a list of all choice points of this state graph.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>Ch Points</em>' containment reference list.
   * @see org.eclipse.etrice.core.fsm.fSM.FSMPackage#getStateGraph_ChPoints()
   * @model containment="true"
   * @generated
   */
  EList<ChoicePoint> getChPoints();

  /**
   * Returns the value of the '<em><b>Transitions</b></em>' containment reference list.
   * The list contents are of type {@link org.eclipse.etrice.core.fsm.fSM.Transition}.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * <br>This is a list of all transitions of this state graph.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>Transitions</em>' containment reference list.
   * @see org.eclipse.etrice.core.fsm.fSM.FSMPackage#getStateGraph_Transitions()
   * @model containment="true"
   * @generated
   */
  EList<Transition> getTransitions();

  /**
   * Returns the value of the '<em><b>Refined Transitions</b></em>' containment reference list.
   * The list contents are of type {@link org.eclipse.etrice.core.fsm.fSM.RefinedTransition}.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * <br>This is a list of all refined transitions of this state graph.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>Refined Transitions</em>' containment reference list.
   * @see org.eclipse.etrice.core.fsm.fSM.FSMPackage#getStateGraph_RefinedTransitions()
   * @model containment="true"
   * @generated
   */
  EList<RefinedTransition> getRefinedTransitions();

} // StateGraph

Back to the top