/** */ package simpleStatechart; import org.eclipse.emf.ecore.EFactory; /** * * The Factory for the model. * It provides a create method for each non-abstract class of the model. * * @see simpleStatechart.SimpleStatechartPackage * @generated */ public interface SimpleStatechartFactory extends EFactory { /** * The singleton instance of the factory. * * * @generated */ SimpleStatechartFactory eINSTANCE = simpleStatechart.impl.SimpleStatechartFactoryImpl.init(); /** * Returns a new object of class 'State'. * * * @return a new object of class 'State'. * @generated */ State createState(); /** * Returns a new object of class 'Entry'. * * * @return a new object of class 'Entry'. * @generated */ Entry createEntry(); /** * Returns a new object of class 'Statechart'. * * * @return a new object of class 'Statechart'. * @generated */ Statechart createStatechart(); /** * Returns the package supported by this factory. * * * @return the package supported by this factory. * @generated */ SimpleStatechartPackage getSimpleStatechartPackage(); } //SimpleStatechartFactory