Skip to main content
summaryrefslogtreecommitdiffstats
blob: de86e54e656864a0edb80a44a2a5b6476a1e44f4 (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
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
   <extension
         point="org.eclipse.ui.editors">
      <editor
            class="org.eclipse.osee.framework.ui.data.model.editor.core.ODMEditor"
            contributorClass="org.eclipse.osee.framework.ui.data.model.editor.core.ODMEditorActionBarContributor"
            extensions="xml"
            icon="images/workflowConfig.gif"
            id="org.eclipse.osee.framework.ui.data.model.editor.ODMEditor"
            name="OSEE Data Model Editor">
      </editor>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            defaultHandler="org.eclipse.osee.framework.ui.data.model.editor.OpenODMEditor"
            description="Opens the Osee Data Model Editor"
            id="org.eclipse.osee.framework.ui.data.model.editor.command.ODMOpen"
            name="Open OSEE Data Model Editor">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="menu:org.eclipse.osee.framework.ui.skynet.widgets.xBranch.BranchView">
         <command
               commandId="org.eclipse.osee.framework.ui.data.model.editor.command.ODMOpen"
               icon="images/workflowConfig.gif"
               style="push"
               tooltip="Opens the Osee Data Model Editor">
         </command>
      </menuContribution>
      <menuContribution
            locationURI="popup:org.eclipse.osee.framework.ui.skynet.widgets.xBranch.BranchView">
         <command
               commandId="org.eclipse.osee.framework.ui.data.model.editor.command.ODMOpen"
               style="push">
         </command>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.help.toc">
      <toc
            file="help/toc.xml"
            primary="false">
      </toc>
   </extension>
   <extension
         point="org.eclipse.help.contexts">
      <contexts
            file="help/contexts.xml">
      </contexts>
   </extension>
</plugin>

Back to the top