Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.common.tests/Plugin_Testing/registry/multiLang/bundleA/plugin.xml')
-rw-r--r--bundles/org.eclipse.equinox.common.tests/Plugin_Testing/registry/multiLang/bundleA/plugin.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.common.tests/Plugin_Testing/registry/multiLang/bundleA/plugin.xml b/bundles/org.eclipse.equinox.common.tests/Plugin_Testing/registry/multiLang/bundleA/plugin.xml
new file mode 100644
index 000000000..a403780c2
--- /dev/null
+++ b/bundles/org.eclipse.equinox.common.tests/Plugin_Testing/registry/multiLang/bundleA/plugin.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.2"?>
+<plugin>
+ <extension-point id="org.eclipse.test.registryMulti.PointA"
+ name="%attributeTest"
+ schema="schema/PointA.exsd"/>
+ <extension id="org.eclipse.test.registryMulti.ExtA"
+ name="%valueTest"
+ point="org.eclipse.test.registryMulti.PointA">
+ <product
+ application="Application"
+ name="%attributeTest">
+ <section>
+ <subdivision division="%altTest">
+ </subdivision>
+ </section>
+ </product>
+ </extension>
+
+ <extension-point id="org.eclipse.test.registryMulti.PointValue"
+ name="Multi language registry test PointValue"
+ schema="schema/PointA.exsd"/>
+ <extension id="org.eclipse.test.registryMulti.ExtValue"
+ name="Multi language registry test Extension Value"
+ point="org.eclipse.test.registryMulti.PointValue">
+ <product>
+ %valueTest
+ </product>
+ </extension>
+
+</plugin>

Back to the top