| /** | |
| * <copyright> | |
| * </copyright> | |
| * | |
| * $Id$ | |
| */ | |
| package statemachine.impl; | |
| import org.eclipse.emf.ecore.EAttribute; | |
| import org.eclipse.emf.ecore.EClass; | |
| import org.eclipse.emf.ecore.EPackage; | |
| import org.eclipse.emf.ecore.EReference; | |
| import org.eclipse.emf.ecore.impl.EPackageImpl; | |
| import statemachine.CompositeState; | |
| import statemachine.Region; | |
| import statemachine.State; | |
| import statemachine.StatemachineFactory; | |
| import statemachine.StatemachinePackage; | |
| import statemachine.Transition; | |
| /** | |
| * <!-- begin-user-doc --> | |
| * An implementation of the model <b>Package</b>. | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public class StatemachinePackageImpl extends EPackageImpl implements StatemachinePackage { | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| private EClass stateEClass = null; | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| private EClass transitionEClass = null; | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| private EClass compositeStateEClass = null; | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| private EClass regionEClass = null; | |
| /** | |
| * Creates an instance of the model <b>Package</b>, registered with | |
| * {@link org.eclipse.emf.ecore.EPackage.Registry EPackage.Registry} by the package | |
| * package URI value. | |
| * <p>Note: the correct way to create the package is via the static | |
| * factory method {@link #init init()}, which also performs | |
| * initialization of the package, or returns the registered package, | |
| * if one already exists. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @see org.eclipse.emf.ecore.EPackage.Registry | |
| * @see statemachine.StatemachinePackage#eNS_URI | |
| * @see #init() | |
| * @generated | |
| */ | |
| private StatemachinePackageImpl() { | |
| super(eNS_URI, StatemachineFactory.eINSTANCE); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| private static boolean isInited = false; | |
| /** | |
| * Creates, registers, and initializes the <b>Package</b> for this model, and for any others upon which it depends. | |
| * | |
| * <p>This method is used to initialize {@link StatemachinePackage#eINSTANCE} when that field is accessed. | |
| * Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @see #eNS_URI | |
| * @see #createPackageContents() | |
| * @see #initializePackageContents() | |
| * @generated | |
| */ | |
| public static StatemachinePackage init() { | |
| if (isInited) return (StatemachinePackage)EPackage.Registry.INSTANCE.getEPackage(StatemachinePackage.eNS_URI); | |
| // Obtain or create and register package | |
| StatemachinePackageImpl theStatemachinePackage = (StatemachinePackageImpl)(EPackage.Registry.INSTANCE.get(eNS_URI) instanceof StatemachinePackageImpl ? EPackage.Registry.INSTANCE.get(eNS_URI) : new StatemachinePackageImpl()); | |
| isInited = true; | |
| // Create package meta-data objects | |
| theStatemachinePackage.createPackageContents(); | |
| // Initialize created meta-data | |
| theStatemachinePackage.initializePackageContents(); | |
| // Mark meta-data to indicate it can't be changed | |
| theStatemachinePackage.freeze(); | |
| // Update the registry and return the package | |
| EPackage.Registry.INSTANCE.put(StatemachinePackage.eNS_URI, theStatemachinePackage); | |
| return theStatemachinePackage; | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EClass getState() { | |
| return stateEClass; | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EAttribute getState_Name() { | |
| return (EAttribute)stateEClass.getEStructuralFeatures().get(0); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EReference getState_Incoming() { | |
| return (EReference)stateEClass.getEStructuralFeatures().get(1); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EReference getState_Outgoing() { | |
| return (EReference)stateEClass.getEStructuralFeatures().get(2); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EClass getTransition() { | |
| return transitionEClass; | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EReference getTransition_Source() { | |
| return (EReference)transitionEClass.getEStructuralFeatures().get(0); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EReference getTransition_Target() { | |
| return (EReference)transitionEClass.getEStructuralFeatures().get(1); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EAttribute getTransition_Trigger() { | |
| return (EAttribute)transitionEClass.getEStructuralFeatures().get(2); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EAttribute getTransition_Effect() { | |
| return (EAttribute)transitionEClass.getEStructuralFeatures().get(3); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EClass getCompositeState() { | |
| return compositeStateEClass; | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EReference getCompositeState_Region() { | |
| return (EReference)compositeStateEClass.getEStructuralFeatures().get(0); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EClass getRegion() { | |
| return regionEClass; | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EReference getRegion_State() { | |
| return (EReference)regionEClass.getEStructuralFeatures().get(0); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public EReference getRegion_Initial() { | |
| return (EReference)regionEClass.getEStructuralFeatures().get(1); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public StatemachineFactory getStatemachineFactory() { | |
| return (StatemachineFactory)getEFactoryInstance(); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| private boolean isCreated = false; | |
| /** | |
| * Creates the meta-model objects for the package. This method is | |
| * guarded to have no affect on any invocation but its first. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public void createPackageContents() { | |
| if (isCreated) return; | |
| isCreated = true; | |
| // Create classes and their features | |
| stateEClass = createEClass(STATE); | |
| createEAttribute(stateEClass, STATE__NAME); | |
| createEReference(stateEClass, STATE__INCOMING); | |
| createEReference(stateEClass, STATE__OUTGOING); | |
| transitionEClass = createEClass(TRANSITION); | |
| createEReference(transitionEClass, TRANSITION__SOURCE); | |
| createEReference(transitionEClass, TRANSITION__TARGET); | |
| createEAttribute(transitionEClass, TRANSITION__TRIGGER); | |
| createEAttribute(transitionEClass, TRANSITION__EFFECT); | |
| compositeStateEClass = createEClass(COMPOSITE_STATE); | |
| createEReference(compositeStateEClass, COMPOSITE_STATE__REGION); | |
| regionEClass = createEClass(REGION); | |
| createEReference(regionEClass, REGION__STATE); | |
| createEReference(regionEClass, REGION__INITIAL); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| private boolean isInitialized = false; | |
| /** | |
| * Complete the initialization of the package and its meta-model. This | |
| * method is guarded to have no affect on any invocation but its first. | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public void initializePackageContents() { | |
| if (isInitialized) return; | |
| isInitialized = true; | |
| // Initialize package | |
| setName(eNAME); | |
| setNsPrefix(eNS_PREFIX); | |
| setNsURI(eNS_URI); | |
| // Add supertypes to classes | |
| compositeStateEClass.getESuperTypes().add(this.getState()); | |
| // Initialize classes and features; add operations and parameters | |
| initEClass(stateEClass, State.class, "State", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); | |
| initEAttribute(getState_Name(), ecorePackage.getEString(), "name", null, 1, 1, State.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEReference(getState_Incoming(), this.getTransition(), this.getTransition_Target(), "incoming", null, 0, -1, State.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEReference(getState_Outgoing(), this.getTransition(), this.getTransition_Source(), "outgoing", null, 0, -1, State.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEClass(transitionEClass, Transition.class, "Transition", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); | |
| initEReference(getTransition_Source(), this.getState(), this.getState_Outgoing(), "source", null, 1, 1, Transition.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEReference(getTransition_Target(), this.getState(), this.getState_Incoming(), "target", null, 1, 1, Transition.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEAttribute(getTransition_Trigger(), ecorePackage.getEString(), "trigger", null, 0, 1, Transition.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEAttribute(getTransition_Effect(), ecorePackage.getEString(), "effect", null, 0, -1, Transition.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEClass(compositeStateEClass, CompositeState.class, "CompositeState", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); | |
| initEReference(getCompositeState_Region(), this.getRegion(), null, "region", null, 1, -1, CompositeState.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEClass(regionEClass, Region.class, "Region", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); | |
| initEReference(getRegion_State(), this.getState(), null, "state", null, 1, -1, Region.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| initEReference(getRegion_Initial(), this.getState(), null, "initial", null, 1, 1, Region.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_COMPOSITE, IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); | |
| // Create resource | |
| createResource(eNS_URI); | |
| } | |
| } //StatemachinePackageImpl |