Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4dab2160422ebb1ed2916308ffbbf28afa17a0d8 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>

   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            adaptable="true"
            id="org.eclipse.emf.cdo.releng.winexplorer.contribution"
            objectClass="org.eclipse.core.resources.IResource">
         <action
               class="org.eclipse.emf.cdo.releng.winexplorer.PromptAction"
               enablesFor="1"
               icon="prompt.gif"
               id="org.eclipse.emf.cdo.releng.PromptAction"
               label="Command Prompt"
               menubarPath="additions"
               state="true"
               style="push"
               tooltip="Open Command Prompt"/>
         <action
               class="org.eclipse.emf.cdo.releng.winexplorer.ExplorerAction"
               enablesFor="1"
               icon="explorer.gif"
               id="org.eclipse.emf.cdo.releng.ExplorerAction"
               label="Windows Explorer"
               menubarPath="additions"
               state="true"
               style="push"
               tooltip="Open Windows Explorer"/>
      </objectContribution>
   </extension>

</plugin>

Back to the top