Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2013-07-03 16:08:23 +0000
committerBrian Vosburgh2013-07-05 17:05:01 +0000
commit8c8c716e11480748535aa9b88d992bbc72d7d87f (patch)
tree3f28708903f7c7b7b8f9064c3b159cfb8005d5b6 /jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml
parent66c1b9e48c155ef9f40ccdd03a2d8ebcefb87837 (diff)
downloadwebtools.dali-8c8c716e11480748535aa9b88d992bbc72d7d87f.tar.gz
webtools.dali-8c8c716e11480748535aa9b88d992bbc72d7d87f.tar.xz
webtools.dali-8c8c716e11480748535aa9b88d992bbc72d7d87f.zip
clean up various plugin.xml files
Diffstat (limited to 'jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml51
1 files changed, 31 insertions, 20 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml b/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml
index c08012ca5c..07211100ed 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml
@@ -12,6 +12,28 @@
<plugin>
+ <!-- ***** expression definitions ***** -->
+
+ <extension
+ point="org.eclipse.core.expressions.definitions">
+
+ <!--
+ Return whether a JAXB platform config's JAXB platform is EclipseLink.
+ Example usage:
+ <adapt type="org.eclipse.jpt.jaxb.core.platform.JaxbPlatformConfig">
+ <reference definitionId="org.eclipse.jpt.jaxb.eclipselink.expression.jaxbPlatformIsEclipseLink"/>
+ </adapt>
+ -->
+ <definition id="org.eclipse.jpt.jaxb.eclipselink.expression.jaxbPlatformIsEclipseLink">
+ <test property="org.eclipse.jpt.jaxb.core.jaxbPlatformGroup"
+ value="eclipselink"/>
+ </definition>
+
+ </extension>
+
+
+ <!-- ***** content types ***** -->
+
<extension
point="org.eclipse.core.contenttype.contentTypes">
@@ -31,27 +53,8 @@
</extension>
- <!-- ***** expressions ***** -->
+ <!-- ***** property testers ***** -->
- <extension point="org.eclipse.core.expressions.definitions">
- <!-- A test for determining whether something adapts to a JaxbPlatformConfig
- and has an eclipselink platform.
- Force activation of the wst facet plug-in containing the property tester.
- Possible usage:
- <adapt type="org.eclipse.jpt.jaxb.core.platform.JaxbPlatformConfig">
- <reference definitionId="org.eclipse.jpt.jaxb.eclipselink.reference.hasEclipseLinkPlatform"/>
- </adapt>
- -->
- <definition id="org.eclipse.jpt.jaxb.eclipselink.reference.hasEclipseLinkPlatform">
- <test
- property="org.eclipse.jpt.jaxb.core.jaxbPlatformGroup"
- value="eclipselink"
- forcePluginActivation="true"/>
- </definition>
-
- </extension>
-
-
<extension
point="org.eclipse.core.expressions.propertyTesters">
@@ -65,6 +68,8 @@
</extension>
+ <!-- ***** JAXB platforms ***** -->
+
<extension
point="org.eclipse.jpt.jaxb.core.jaxbPlatforms">
@@ -115,6 +120,8 @@
</extension>
+ <!-- ***** EMF ecore package registry ***** -->
+
<extension
point="org.eclipse.emf.ecore.generated_package">
@@ -126,6 +133,8 @@
</extension>
+ <!-- ***** library validators ***** -->
+
<extension
point="org.eclipse.jpt.common.core.libraryValidators">
@@ -151,6 +160,8 @@
</extension>
+ <!-- ***** resource types ***** -->
+
<extension
point="org.eclipse.jpt.common.core.resourceTypes">

Back to the top