Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/v1_1/resource/orm/XmlMappedSuperclass.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/v1_1/resource/orm/XmlMappedSuperclass.java95
1 files changed, 95 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/v1_1/resource/orm/XmlMappedSuperclass.java b/jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/v1_1/resource/orm/XmlMappedSuperclass.java
new file mode 100644
index 0000000000..80c96bfad8
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.eclipselink.core/src/org/eclipse/jpt/eclipselink/core/v1_1/resource/orm/XmlMappedSuperclass.java
@@ -0,0 +1,95 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Oracle. All rights reserved.
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0, which accompanies this distribution
+ * and is available at http://www.eclipse.org/legal/epl-v10.html.
+ *
+ * Contributors:
+ * Oracle - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.jpt.eclipselink.core.v1_1.resource.orm;
+
+import org.eclipse.emf.ecore.EClass;
+import org.eclipse.emf.ecore.EStructuralFeature;
+import org.eclipse.jpt.core.internal.resource.xml.translators.SimpleTranslator;
+import org.eclipse.wst.common.internal.emf.resource.Translator;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Xml Mapped Superclass</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ *
+ * @see org.eclipse.jpt.eclipselink.core.v1_1.resource.orm.EclipseLink1_1OrmPackage#getXmlMappedSuperclass()
+ * @model kind="class"
+ * @generated
+ */
+public class XmlMappedSuperclass extends org.eclipse.jpt.eclipselink.core.resource.orm.XmlMappedSuperclass
+{
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ protected XmlMappedSuperclass()
+ {
+ super();
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ @Override
+ protected EClass eStaticClass()
+ {
+ return EclipseLink1_1OrmPackage.Literals.XML_MAPPED_SUPERCLASS;
+ }
+ // ********** translators **********
+
+ public static Translator buildTranslator(String elementName, EStructuralFeature structuralFeature) {
+ return new SimpleTranslator(
+ elementName,
+ structuralFeature,
+ EclipseLink1_1OrmPackage.eINSTANCE.getXmlMappedSuperclass(),
+ buildTranslatorChildren());
+ }
+
+ private static Translator[] buildTranslatorChildren() {
+ return new Translator[] {
+ buildClassTranslator(),
+ buildAccessTranslator(),
+ buildMetadataCompleteTranslator(),
+ buildReadOnlyTranslator(),
+ buildExistenceCheckingTranslator(),
+ buildExcludeDefaultMappingsTranslator(),
+ buildDescriptionTranslator(),
+ buildCustomizerTranslator(),
+ buildChangeTrackingTranslator(),
+ buildIdClassTranslator(),
+ buildOptimisticLockingTranslator(),
+ buildCacheTranslator(),
+ buildConverterTranslator(),
+ buildTypeConverterTranslator(),
+ buildObjectTypeConverterTranslator(),
+ buildStructConverterTranslator(),
+ buildCopyPolicyTranslator(),
+ buildInstantiationCoypPolicyTranslator(),
+ buildCloneCopyPolicyTranslator(),
+ buildExcludeDefaultListenersTranslator(),
+ buildExcludeSuperclassListenersTranslator(),
+ buildEntityListenersTranslator(),
+ buildPrePersistTranslator(),
+ buildPostPersistTranslator(),
+ buildPreRemoveTranslator(),
+ buildPostRemoveTranslator(),
+ buildPreUpdateTranslator(),
+ buildPostUpdateTranslator(),
+ buildPostLoadTranslator(),
+ buildPropertyTranslator(),
+ Attributes.buildTranslator()
+ };
+ }
+
+} // XmlMappedSuperclass

Back to the top