| /** |
| */ |
| package subdiagrams.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 subdiagrams.Clazz; |
| import subdiagrams.PackageableElement; |
| import subdiagrams.SubdiagramsFactory; |
| import subdiagrams.SubdiagramsPackage; |
| |
| /** |
| * <!-- begin-user-doc --> |
| * An implementation of the model <b>Package</b>. |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public class SubdiagramsPackageImpl extends EPackageImpl implements SubdiagramsPackage |
| { |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| private EClass packageEClass = null; |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| private EClass packageableElementEClass = null; |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| private EClass clazzEClass = 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 subdiagrams.SubdiagramsPackage#eNS_URI |
| * @see #init() |
| * @generated |
| */ |
| private SubdiagramsPackageImpl() |
| { |
| super(eNS_URI, SubdiagramsFactory.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 SubdiagramsPackage#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 SubdiagramsPackage init() |
| { |
| if (isInited) return (SubdiagramsPackage)EPackage.Registry.INSTANCE.getEPackage(SubdiagramsPackage.eNS_URI); |
| |
| // Obtain or create and register package |
| SubdiagramsPackageImpl theSubdiagramsPackage = (SubdiagramsPackageImpl)(EPackage.Registry.INSTANCE.get(eNS_URI) instanceof SubdiagramsPackageImpl ? EPackage.Registry.INSTANCE.get(eNS_URI) : new SubdiagramsPackageImpl()); |
| |
| isInited = true; |
| |
| // Create package meta-data objects |
| theSubdiagramsPackage.createPackageContents(); |
| |
| // Initialize created meta-data |
| theSubdiagramsPackage.initializePackageContents(); |
| |
| // Mark meta-data to indicate it can't be changed |
| theSubdiagramsPackage.freeze(); |
| |
| |
| // Update the registry and return the package |
| EPackage.Registry.INSTANCE.put(SubdiagramsPackage.eNS_URI, theSubdiagramsPackage); |
| return theSubdiagramsPackage; |
| } |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public EClass getPackage() |
| { |
| return packageEClass; |
| } |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public EAttribute getPackage_Name() |
| { |
| return (EAttribute)packageEClass.getEStructuralFeatures().get(0); |
| } |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public EReference getPackage_Contents() |
| { |
| return (EReference)packageEClass.getEStructuralFeatures().get(1); |
| } |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public EClass getPackageableElement() |
| { |
| return packageableElementEClass; |
| } |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public EClass getClazz() |
| { |
| return clazzEClass; |
| } |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public EAttribute getClazz_Name() |
| { |
| return (EAttribute)clazzEClass.getEStructuralFeatures().get(0); |
| } |
| |
| /** |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| public SubdiagramsFactory getSubdiagramsFactory() |
| { |
| return (SubdiagramsFactory)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 |
| packageEClass = createEClass(PACKAGE); |
| createEAttribute(packageEClass, PACKAGE__NAME); |
| createEReference(packageEClass, PACKAGE__CONTENTS); |
| |
| packageableElementEClass = createEClass(PACKAGEABLE_ELEMENT); |
| |
| clazzEClass = createEClass(CLAZZ); |
| createEAttribute(clazzEClass, CLAZZ__NAME); |
| } |
| |
| /** |
| * <!-- 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); |
| |
| // Create type parameters |
| |
| // Set bounds for type parameters |
| |
| // Add supertypes to classes |
| packageEClass.getESuperTypes().add(this.getPackageableElement()); |
| clazzEClass.getESuperTypes().add(this.getPackageableElement()); |
| |
| // Initialize classes and features; add operations and parameters |
| initEClass(packageEClass, subdiagrams.Package.class, "Package", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); |
| initEAttribute(getPackage_Name(), ecorePackage.getEString(), "name", null, 0, 1, subdiagrams.Package.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); |
| initEReference(getPackage_Contents(), this.getPackageableElement(), null, "contents", null, 0, -1, subdiagrams.Package.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); |
| |
| initEClass(packageableElementEClass, PackageableElement.class, "PackageableElement", IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); |
| |
| initEClass(clazzEClass, Clazz.class, "Clazz", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); |
| initEAttribute(getClazz_Name(), ecorePackage.getEString(), "name", null, 0, 1, Clazz.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); |
| |
| // Create resource |
| createResource(eNS_URI); |
| |
| // Create annotations |
| // gmf.diagram |
| createGmfAnnotations(); |
| // gmf.compartment |
| createGmf_1Annotations(); |
| // gmf.node |
| createGmf_2Annotations(); |
| } |
| |
| /** |
| * Initializes the annotations for <b>gmf.diagram</b>. |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| protected void createGmfAnnotations() |
| { |
| String source = "gmf.diagram"; |
| addAnnotation |
| (packageEClass, |
| source, |
| new String[] |
| { |
| }); |
| } |
| |
| /** |
| * Initializes the annotations for <b>gmf.compartment</b>. |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| protected void createGmf_1Annotations() |
| { |
| String source = "gmf.compartment"; |
| addAnnotation |
| (getPackage_Contents(), |
| source, |
| new String[] |
| { |
| }); |
| } |
| |
| /** |
| * Initializes the annotations for <b>gmf.node</b>. |
| * <!-- begin-user-doc --> |
| * <!-- end-user-doc --> |
| * @generated |
| */ |
| protected void createGmf_2Annotations() |
| { |
| String source = "gmf.node"; |
| addAnnotation |
| (packageableElementEClass, |
| source, |
| new String[] |
| { |
| "label", "name" |
| }); |
| } |
| |
| } //SubdiagramsPackageImpl |