Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 66c312e69dfc7adb9249450555ebce65aa0632f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
   id="org.eclipse.ecf.provider"
   name="ECF Provider Plugin"
   version="0.0.1"
   provider-name="eclipse.org"
   class="org.eclipse.ecf.provider.ProviderPlugin">

   <runtime>
      <library name="provider.jar">
         <export name="*"/>
      </library>
   </runtime>

   <extension
         point="org.eclipse.ecf.containerFactory">
      <containerFactory
            class="org.eclipse.ecf.provider.generic.ContainerInstantiator"
            description="Generic container implementation (server and client)"
            name="generic"/>
   </extension>
   <extension
         point="org.eclipse.ecf.comm">
      <connection
            description="TCP Client Connection"
            name="tcpclient"
            instantiatorClass="org.eclipse.ecf.provider.comm.tcp.Client$Creator"/>
   </extension>

</plugin>

Back to the top