Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfullbright2011-04-27 16:56:03 +0000
committerpfullbright2011-04-27 16:56:03 +0000
commitab3d65ed6cc53f9972127132070fe155c1b54022 (patch)
treea2ebffc217de4ec1da75c32fd87d477727d61c52 /jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/JptJpaEclipseLinkCorePlugin.java
parent2abe30010cc30b0ca1d1e393781e2a6aabb48570 (diff)
downloadwebtools.dali-ab3d65ed6cc53f9972127132070fe155c1b54022.tar.gz
webtools.dali-ab3d65ed6cc53f9972127132070fe155c1b54022.tar.xz
webtools.dali-ab3d65ed6cc53f9972127132070fe155c1b54022.zip
added EclipseLink 2.3 JPA platform and UI
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/JptJpaEclipseLinkCorePlugin.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/JptJpaEclipseLinkCorePlugin.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/JptJpaEclipseLinkCorePlugin.java b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/JptJpaEclipseLinkCorePlugin.java
index bedcf5271b..46ad68cb7c 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/JptJpaEclipseLinkCorePlugin.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/JptJpaEclipseLinkCorePlugin.java
@@ -23,6 +23,7 @@ import org.eclipse.jpt.jpa.eclipselink.core.resource.orm.v1_2.EclipseLink1_2;
import org.eclipse.jpt.jpa.eclipselink.core.resource.orm.v2_0.EclipseLink2_0;
import org.eclipse.jpt.jpa.eclipselink.core.resource.orm.v2_1.EclipseLink2_1;
import org.eclipse.jpt.jpa.eclipselink.core.resource.orm.v2_2.EclipseLink2_2;
+import org.eclipse.jpt.jpa.eclipselink.core.resource.orm.v2_3.EclipseLink2_3;
import org.osgi.framework.BundleContext;
/**
@@ -64,6 +65,11 @@ public class JptJpaEclipseLinkCorePlugin extends Plugin
public static final String ECLIPSELINK_PLATFORM_VERSION_2_2 = "2.2"; //$NON-NLS-1$
/**
+ * Version string for EclipseLink platform version 2.3
+ */
+ public static final String ECLIPSELINK_PLATFORM_VERSION_2_3 = "2.3"; //$NON-NLS-1$
+
+ /**
* Value of the content-type for eclipselink-orm.xml mappings files. Use this
* value to retrieve the ORM xml content type from the content type manager
* and to add new eclipselink-orm.xml-like extensions to this content type.
@@ -109,6 +115,12 @@ public class JptJpaEclipseLinkCorePlugin extends Plugin
public static final JptResourceType ECLIPSELINK_ORM_XML_2_2_RESOURCE_TYPE
= new JptResourceType(ECLIPSELINK_ORM_XML_CONTENT_TYPE, EclipseLink2_2.SCHEMA_VERSION);
+ /**
+ * The resource type for eclipselink-orm.xml version 2.3 mapping files
+ */
+ public static final JptResourceType ECLIPSELINK_ORM_XML_2_3_RESOURCE_TYPE
+ = new JptResourceType(ECLIPSELINK_ORM_XML_CONTENT_TYPE, EclipseLink2_3.SCHEMA_VERSION);
+
public static final IPath DEFAULT_ECLIPSELINK_ORM_XML_RUNTIME_PATH = new Path("META-INF/eclipselink-orm.xml"); //$NON-NLS-1$

Back to the top