Skip to main content
summaryrefslogtreecommitdiffstats
blob: 878de10a3a2f145551357caca3aad6283da3c67e (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.commands">
      <command
            defaultHandler="org.eclipse.epp.common.ContributeHandler"
            description="%contribute.command.desc"
            id="org.eclipse.epp.package.common.contribute"
            name="%contribute.command.label">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="menu:help?after=about">
         <command
               commandId="org.eclipse.epp.package.common.contribute"
               style="push">
         </command>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.commandImages">
      <image
            commandId="org.eclipse.epp.package.common.contribute"
            icon="icons/star.png">
      </image>
   </extension>

</plugin>

Back to the top