forked from vogellacompany/codeexamples-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
53 lines (51 loc) · 1.52 KB
/
plugin.xml
File metadata and controls
53 lines (51 loc) · 1.52 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="testkeybinding.Application">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="RCP Perspective"
class="testkeybinding.Perspective"
id="TestKeybinding.perspective">
</perspective>
</extension>
<extension
id="mycommands"
name="mycommands"
point="org.eclipse.ui.commands">
<command
description="My first command"
id="testkeybinding.mycommand1"
name="MyCommand">
</command>
<keyBinding
commandId="testkeybinding.mycommand1"
keyConfigurationId="org.eclipse.ui.defaultAcceleratorConfiguration"
keySequence="M1+D">
</keyBinding>
</extension>
<extension
point="org.eclipse.ui.actionSets">
<actionSet
id="TestKeybinding.actionSet1"
label="label"
visible="true">
<action
class="testkeybinding.HelloAction"
definitionId="testkeybinding.mycommand1"
id="testkeybinding.helloaction"
label="HelloAction"
menubarPath="hello">
</action>
</actionSet>
</extension>
</plugin>