blob: 9377b9205da0824e075e696ff8d6fbcc24b97cd7 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
id="org.eclipse.examples.hello.commands.category"
name="Sample Category">
</category>
<command
categoryId="org.eclipse.examples.hello.commands.category"
id="org.eclipse.examples.hello.commands.sampleCommand"
name="Sample Command">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="org.eclipse.examples.hello.handlers.SampleHandler"
commandId="org.eclipse.examples.hello.commands.sampleCommand">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="org.eclipse.examples.hello.commands.sampleCommand"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+6">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="org.eclipse.examples.hello.menus.sampleMenu"
label="Sample Menu"
mnemonic="M">
<command
commandId="org.eclipse.examples.hello.commands.sampleCommand"
id="org.eclipse.examples.hello.menus.sampleCommand"
mnemonic="S">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="org.eclipse.examples.hello.toolbars.sampleToolbar">
<command
commandId="org.eclipse.examples.hello.commands.sampleCommand"
icon="icons/sample.gif"
id="org.eclipse.examples.hello.toolbars.sampleCommand"
tooltip="Say hello world">
</command>
</toolbar>
</menuContribution>
</extension>
</plugin>