Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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.xml21
1 files changed, 21 insertions, 0 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 1f5253957e..1e9d7b7b5b 100644
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml
+++ b/jaxb/plugins/org.eclipse.jpt.jaxb.eclipselink.core/plugin.xml
@@ -31,6 +31,27 @@
</extension>
+ <!-- ***** expressions ***** -->
+
+ <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">

Back to the top