-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
45 lines (42 loc) · 1.46 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<command
categoryId="org.eclipse.ui.category.file"
defaultHandler="pp.eclipse.command.ImportCommand"
description="Imports the currently open XML file as Content XML."
id="pp-eclipse.command.ImportContentXML"
name="Import Content XML">
</command>
<command
categoryId="org.eclipse.ui.category.navigate"
defaultHandler="pp.eclipse.command.OpenExternalIdCommand"
description="Browse External Id and select one to open"
id="pp.eclipse.command.OpenExternalIdCommand"
name="Open by External Id">
</command>
</extension>
<extension point="org.eclipse.ui.bindings">
<key
commandId="pp.eclipse.command.OpenExternalIdCommand"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M2+M3+P">
</key>
<key
commandId="pp-eclipse.command.ImportContentXML"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M2+M3+X I">
</key>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="pp.eclipse.ui.PreferencesPage"
id="pp-eclipse.preferences"
name="pp-eclipse">
</page>
</extension>
</plugin>