Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 18th, 2012  |  syntax: None  |  size: 0.51 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <extension point="org.eclipse.ui.menus">
  2.   <menuContribution locationURI="menu:org.eclipse.jdt.ui.refactoring.menu?after=typeGroup">
  3.     <command
  4.       commandId="mycommandid"
  5.       label="mycommandlabel">
  6.     </command>
  7.   </menuContribution>
  8. </extension>
  9. <extension point="org.eclipse.ui.commands">
  10.   <command
  11.     id="mycommandid"
  12.     name="mycommandname">
  13.   </command>
  14. </extension>
  15. <extension point="org.eclipse.ui.handlers">
  16.   <handler
  17.     class="MyHandlerClass"
  18.     commandId="mycommandid">
  19.   </handler>
  20. </extension>