-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
67 lines (63 loc) · 2.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.ui.handlers">
<handler commandId="com.ensoftcorp.open.sid.dynamic.cloneProjectCommand"
class="com.ensoftcorp.open.sid.handlers.CloneProjectHandler">
</handler>
<handler commandId="com.ensoftcorp.open.sid.dynamic.instrumentAllLoopHeadersCommand"
class="com.ensoftcorp.open.sid.handlers.InstrumentAllLoopHeadersProjectHandler">
</handler>
<handler commandId="com.ensoftcorp.open.sid.dynamic.createDriverProjectCommand"
class="com.ensoftcorp.open.sid.handlers.CreateDriverProjectHandler">
</handler>
<handler commandId="com.ensoftcorp.open.sid.dynamic.createMethodDriverProjectCommand"
class="com.ensoftcorp.open.sid.handlers.CreateMethodDriverProjectHandler">
</handler>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="popup:org.eclipse.jdt.ui.PackageExplorer?after=additions">
<menu id="com.ensoftcorp.open.sid.dynamic.explorer.menu"
label="SID" />
</menuContribution>
<menuContribution locationURI="popup:com.ensoftcorp.open.sid.dynamic.explorer.menu?after=additions">
<command commandId="com.ensoftcorp.open.sid.dynamic.cloneProjectCommand"
icon="icons/clone.png"
label="Clone Project (with instruments)"
style="push" />
</menuContribution>
<menuContribution locationURI="popup:com.ensoftcorp.open.sid.dynamic.explorer.menu?after=additions">
<command commandId="com.ensoftcorp.open.sid.dynamic.instrumentAllLoopHeadersCommand"
icon="icons/gears.png"
label="Instrument All Loop Headers"
style="push" />
</menuContribution>
<menuContribution locationURI="popup:com.ensoftcorp.open.sid.dynamic.explorer.menu?after=additions">
<command commandId="com.ensoftcorp.open.sid.dynamic.createDriverProjectCommand"
icon="icons/gears.png"
label="Create Driver Project"
style="push" />
</menuContribution>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="popup:#TextEditorContext?after=additions">
<menu id="com.ensoftcorp.open.sid.dynamic.editor.menu"
label="SID" />
</menuContribution>
<menuContribution locationURI="popup:com.ensoftcorp.open.sid.dynamic.editor.menu?after=additions">
<command commandId="com.ensoftcorp.open.sid.dynamic.createMethodDriverProjectCommand"
icon="icons/gears.png"
label="Instrument + Create Method Driver Project"
style="push" />
</menuContribution>
</extension>
<!-- uncomment to enable smart view contribution -->
<!--
<extension
point="com.ensoftcorp.atlas.ui.smartViewScript">
<script
class="com.ensoftcorp.open.com.ensoftcorp.open.sid.ui.smart.LoopCallGraphSmartView">
</script>
</extension>
-->
</plugin>