Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8605ad5e4c9f14011763f64438906135a8edb6e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ecf.identity.namespace">
      <namespace
            class="org.eclipse.ecf.examples.provider.remoteservice.identity.RSExampleNamespace"
            description="RS Example Namespace"
            name="ecf.namespace.example.rs">
      </namespace>
   </extension>
   <extension
         point="org.eclipse.ecf.containerFactory">
      <containerFactory
            class="org.eclipse.ecf.internal.examples.provider.remoteservice.container.RSExampleContainerInstantiator"
            name="ecf.container.example.rs">
      </containerFactory>
   </extension>

</plugin>

Back to the top