Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0b39cc71e25e4932ce12681bbc2544b4642708fa (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
57
58
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
         point="org.eclipse.ui.editors">
           <editor
            class="org.eclipse.osee.framework.ui.branch.graph.core.BranchGraphEditor"
            contributorClass="org.eclipse.osee.framework.ui.branch.graph.core.BranchGraphActionBarContributor"
            default="true"
            icon="images/graph.gif"
            id="org.eclipse.osee.framework.ui.branch.graph.BranchGraphEditor"
            name="Branch Graph">
      </editor>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            defaultHandler="org.eclipse.osee.framework.ui.branch.graph.OpenBranchGraph"
            description="Open the Branch Graph"
            id="org.eclipse.osee.framework.ui.branch.graph.command.open.branch.graph"
            name="Open Branch Graph">
      </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.branch.graph.command.open.branch.graph"
               icon="images/graph.gif"
               label="Open Branch Graph"
               style="push">
         </command>
      </menuContribution>
      <menuContribution
            locationURI="popup:org.eclipse.osee.framework.ui.skynet.widgets.xBranch.BranchView">
         <command
               commandId="org.eclipse.osee.framework.ui.branch.graph.command.open.branch.graph"
               icon="images/graph.gif"
               label="Open Branch Graph"
               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