Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7c583ec38481525eb3220328bc0835c26272e16e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>

   <extension
         id="testB"
         point="org.eclipse.core.runtime.adapters">
         <factory class="sampleClassB1" adaptableType="org.eclipse.equinox.common.tests.adaptable.TestAdaptable">
            <adapter type="abc.SomethingElseB1"/>
         </factory>
   </extension>
   
   <extension point="org.eclipse.core.runtime.adapters">
         <factory class="sampleClassB2" adaptableType="org.eclipse.equinox.common.tests.adaptable.TestAdaptable">
            <adapter type="abc.SomethingElseB2"/>
         </factory>
   </extension>

</plugin>

Back to the top