-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
73 lines (73 loc) · 2.39 KB
/
plugin.xml
File metadata and controls
73 lines (73 loc) · 2.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
name="Test Smell Detector Category"
id="TestSmell.commands.category">
</category>
<command
name="Test Smell Detector Command"
categoryId="TestSmell.commands.category"
id="TestSmell.commands.TSmellCommand">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="TestSmell.commands.TSmellCommand"
class="main.java.testsmell.plugin.handlers.TSmellHandler">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="TestSmell.commands.TSmellCommand"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+6"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="TestSmell.toolbars.TSmellToolbar">
<command
commandId="TestSmell.commands.TSmellCommand"
icon="icons/nose.png"
tooltip="Run Test Smell Detector"
id="TestSmell.toolbars.TSmellCommand">
</command>
</toolbar>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="false"
class="main.java.testsmell.plugin.views.TSmellView"
icon="icons/nose.png"
id="TestSmellDetector.view"
inject="false"
name="Test Smell Detector"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<view
closeable="true"
id="TestSmellDetector.view"
relationship="stack"
relative="TestSmellDetector.view"
showTitle="true"
visible="false">
</view>
</perspectiveExtension>
</extension>
</plugin>