Skip to main content
summaryrefslogtreecommitdiffstats
blob: 022818d8bb879fb1e48653de272a74ff84213f6f (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         id="OteSystemLibsNature"
         name="OTE System Libraries Nature"
         point="org.eclipse.core.resources.natures">
      <runtime>
         <run
               class="org.eclipse.osee.ote.runtimemanager.OteSystemLibsNature">
         </run>
      </runtime>
   </extension>
   <extension
         id="OteUserLibsNature"
         name="OTE User Libraries Nature"
         point="org.eclipse.core.resources.natures">
      <runtime>
         <run
               class="org.eclipse.osee.ote.runtimemanager.OteUserLibsNature">
         </run>
      </runtime>
   </extension>
   
  <extension
         point="org.eclipse.ui.startup">
      <startup
            class="org.eclipse.osee.ote.runtimemanager.EarlyStartup">
      </startup>
   </extension>
  <extension
        point="org.eclipse.jdt.core.classpathContainerInitializer">
     <classpathContainerInitializer
           class="org.eclipse.osee.ote.runtimemanager.container.OteClasspathContainerInitializer"
           id="OTE Library">
     </classpathContainerInitializer>
  </extension>
  <extension
        point="org.eclipse.jdt.ui.classpathContainerPage">
     <classpathContainerPage
           class="org.eclipse.osee.ote.runtimemanager.container.OteContainerPage"
           id="org.eclipse.osee.ote.runtimeManager.container.OTE_CONTAINER"
           name="OTE Library">
     </classpathContainerPage>
  </extension>

</plugin>

Back to the top