Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2e813d929212e041ae9ebbfd33e7528cf1d748a8 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>

<!-- Extension points -->
   <extension-point id="delegates" name="%ExtensionPoint.delegates.name" schema="schema/delegates.exsd"/>
   
<!-- Persistence delegate contributions -->
   <extension point="org.eclipse.tm.te.runtime.persistence.delegates">
      <delegate
            class="org.eclipse.tm.te.runtime.persistence.properties.PropertiesFilePersistenceDelegate"
            id="org.eclipse.tm.te.runtime.persistence.properties"
            label="%PropertiesFilePersistenceDelegate.label">
      </delegate>
   </extension>

<!-- Service contributions -->
   <extension point="org.eclipse.tm.te.runtime.services.services">
      <genericServices>
         <service class="org.eclipse.tm.te.runtime.persistence.services.PersistenceService">
            <serviceType class="org.eclipse.tm.te.runtime.persistence.interfaces.IPersistenceService"/>
         </service>
      </genericServices>
   </extension>

</plugin>

Back to the top