| /** | |
| * <copyright> | |
| * </copyright> | |
| * | |
| * $Id$ | |
| */ | |
| package statemachine; | |
| import org.eclipse.emf.ecore.EFactory; | |
| /** | |
| * <!-- begin-user-doc --> | |
| * The <b>Factory</b> for the model. | |
| * It provides a create method for each non-abstract class of the model. | |
| * <!-- end-user-doc --> | |
| * @see statemachine.StatemachinePackage | |
| * @generated | |
| */ | |
| public interface StatemachineFactory extends EFactory { | |
| /** | |
| * The singleton instance of the factory. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| StatemachineFactory eINSTANCE = statemachine.impl.StatemachineFactoryImpl.init(); | |
| /** | |
| * Returns a new object of class '<em>State</em>'. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @return a new object of class '<em>State</em>'. | |
| * @generated | |
| */ | |
| State createState(); | |
| /** | |
| * Returns a new object of class '<em>Transition</em>'. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @return a new object of class '<em>Transition</em>'. | |
| * @generated | |
| */ | |
| Transition createTransition(); | |
| /** | |
| * Returns a new object of class '<em>Composite State</em>'. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @return a new object of class '<em>Composite State</em>'. | |
| * @generated | |
| */ | |
| CompositeState createCompositeState(); | |
| /** | |
| * Returns a new object of class '<em>Region</em>'. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @return a new object of class '<em>Region</em>'. | |
| * @generated | |
| */ | |
| Region createRegion(); | |
| /** | |
| * Returns the package supported by this factory. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @return the package supported by this factory. | |
| * @generated | |
| */ | |
| StatemachinePackage getStatemachinePackage(); | |
| } //StatemachineFactory |