-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
508 lines (498 loc) · 19.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
point="org.eclipse.ui.actionSets">
<actionSet
label="TestSmells"
visible="true"
id="org.ufba.raide.TestSmells">
<menu
id="BadSmellsMenu"
label="RAIDE">
</menu>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/csv-file.png"
id="org.ufba.raide.java.actions.AllTestSmells"
label="All Test Smells"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="All Test Smells">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.VerboseTest"
label="Verbose Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Verbose Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.UnknownTest"
label="Unknown Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Unknown Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.SleepyTest"
label="Sleepy Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Sleepy Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.SensitiveEquality"
label="Sensitive Equality"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Sensitive Equality">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.ResourceOptimism"
label="Resource Optimism"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Resource Optimism">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.RedundantAssertion"
label="Redundant Assertion"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Redundant Assertion">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.PrintStatement"
label="Print Statement"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Print Statement">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.MysteryGuest"
label="Mystery Guest"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Mystery Guest">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.MagicNumberTest"
label="Magic Number Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Magic Number Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.LazyTest"
label="Lazy Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Lazy Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.IgnoredTest"
label="Ignored Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Ignored Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.GeneralFixture"
label="General Fixture"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="General Fixture">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.ExceptionCatchingThrowing"
label="Exception Catching Throwing"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Exception Catching Throwing">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.EmptyTest"
label="Empty Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Empty Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.EagerTest"
label="Eager Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Eager Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.DuplicateAssert"
label="Duplicate Assert"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Duplicate Assert">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.DependentTest"
label="Dependent Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Dependent Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.DefaultTest"
label="Default Test"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Default Test">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.ConstructionInstallation"
label="Construction Installation"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Construction Installation">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.ConditionalTestLogic"
label="Conditional Test Logic"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Conditional Test Logic">
</action>
<action
class="org.ufba.raide.java.actions.TestSmellsMenu"
icon="icons/ladybird.png"
id="org.ufba.raide.java.actions.AssertionRoulette"
label="Assertion Roulette"
menubarPath="BadSmellsMenu/sampleGroup"
tooltip="Assertion Roulette">
</action>
</actionSet>
</extension>
<extension
point="org.eclipse.ui.views">
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.AssertionRouletteView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.AssertionRoulette"
name="Assertion Roulette">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.ConditionalTestLogicView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.ConditionalTestLogic"
name="Conditional Test Logic">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.ConstructionInstallationView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.ConstructionInstallation"
name="Construction Installation">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.DefaultTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.DefaultTest"
name="Default Test">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.DependentTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.DependentTest"
name="Dependent Test">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.DuplicateAssertView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.DuplicateAssert"
name="Duplicate Assert">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.EagerTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.EagerTest"
name="Eager Test">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.EmptyTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.EmptyTest"
name="Empty Test">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.ExceptionCatchingThrowingView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.ExceptionCatchingThrowing"
name="Exception Catching Throwing">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.GeneralFixtureView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.GeneralFixture"
name="General Fixture">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.IgnoredTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.IgnoredTest"
name="Ignored Test">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.LazyTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.LazyTest"
name="Lazy Test"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.MagicNumberTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.MagicNumberTest"
name="Magic Number Test"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.MysteryGuestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.MysteryGuest"
name="Mystery Guest"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.PrintStatementView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.PrintStatement"
name="Print Statement"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.RedundantAssertionView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.RedundantAssertion"
name="Redundant Assertion"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.ResourceOptimismView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.ResourceOptimism"
name="Resource Optimism"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.SensitiveEqualityView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.SensitiveEquality"
name="Sensitive Equality"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.UnknownTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.UnknownTest"
name="Unknown Test"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.SleepyTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.SleepyTest"
name="Sleepy Test"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.VerboseTestView"
icon="icons/ladybird.png"
id="org.ufba.raide.java.views.VerboseTest"
name="Verbose Test"
restorable="true">
</view>
<view
category="org.ufba.raide"
class="org.ufba.raide.java.refactoring.views.AllTestSmellsView"
icon="icons/csv-file.png"
id="org.ufba.raide.java.views.AllTestSmells"
name="All Test Smells Report"
restorable="false">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<view
ratio="0.5"
relative="org.eclipse.ui.views.TaskList"
relationship="right"
id="gr.uom.java.jdeodorant.views.FeatureEnvy">
</view>
</perspectiveExtension>
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<view
id="gr.uom.java.jdeodorant.views.TypeChecking"
ratio="0.5"
relationship="right"
relative="org.eclipse.ui.views.TaskList">
</view>
</perspectiveExtension>
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<view
id="gr.uom.java.jdeodorant.views.LongMethod"
ratio="0.5"
relationship="right"
relative="org.eclipse.ui.views.TaskList">
</view>
</perspectiveExtension>
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<view
id="gr.uom.java.jdeodorant.views.GodClass"
ratio="0.5"
relationship="right"
relative="org.eclipse.ui.views.TaskList">
</view>
</perspectiveExtension>
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<view
id="gr.uom.java.jdeodorant.views.DuplicatedCode"
ratio="0.5"
relationship="right"
relative="org.eclipse.ui.views.TaskList">
</view>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="org.ufba.raide.java.preferences.PropertyManagerPreferencePage"
id="gr.uom.java.jdeodorant.preferences.PropertyManagerPreferencePage"
name="JDeodorant">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.ufba.raide.java.preferences.PreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification
annotationType="gr.uom.java.jdeodorant.extractionAnnotation"
colorPreferenceKey="extractionAnnotation_color"
colorPreferenceValue="192,255,192"
contributesToHeader="false"
highlightPreferenceKey="extractionAnnotation_highlight"
highlightPreferenceValue="true"
includeOnPreferencePage="true"
isGoToNextNavigationTarget="true"
isGoToNextNavigationTargetKey="extractionAnnotation_nextNavigationTarget"
isGoToPreviousNavigationTarget="true"
isGoToPreviousNavigationTargetKey="extractionAnnotation_previousNavigationTarget"
label="Extracted Code"
overviewRulerPreferenceKey="extractionAnnotation_overviewRuler"
overviewRulerPreferenceValue="true"
presentationLayer="0"
showInNextPrevDropdownToolbarAction="true"
showInNextPrevDropdownToolbarActionKey="extractionAnnotation_nextPrevDropdownToolbar"
textPreferenceKey="extractionAnnotation_text"
textPreferenceValue="true"
textStylePreferenceKey="extractionAnnotation_stylePreferences"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="extractionAnnotation_verticalRuler"
verticalRulerPreferenceValue="false">
</specification>
<specification
annotationType="gr.uom.java.jdeodorant.duplicationAnnotation"
colorPreferenceKey="duplicationAnnotation_color"
colorPreferenceValue="255,160,160"
contributesToHeader="false"
highlightPreferenceKey="duplicationAnnotation_highlight"
highlightPreferenceValue="true"
includeOnPreferencePage="true"
isGoToNextNavigationTarget="true"
isGoToNextNavigationTargetKey="duplicationAnnotation_nextNavigationTarget"
isGoToPreviousNavigationTarget="true"
isGoToPreviousNavigationTargetKey="duplicationAnnotation_previousNavigationTarget"
label="Duplicated Code"
overviewRulerPreferenceKey="duplicationAnnotation_overviewRuler"
overviewRulerPreferenceValue="true"
presentationLayer="0"
showInNextPrevDropdownToolbarAction="true"
showInNextPrevDropdownToolbarActionKey="duplicationAnnotation_nextPrevDropdownToolbar"
textPreferenceKey="duplicationAnnotation_text"
textPreferenceValue="true"
textStylePreferenceKey="duplicationAnnotation_stylePreferences"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="duplicationAnnotation_verticalRuler"
verticalRulerPreferenceValue="false">
</specification>
</extension>
<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
adaptable="false"
id="gr.uom.java.jdeodorant.sliceProfile"
objectClass="org.eclipse.jdt.core.IMethod">
<action
class="org.ufba.raide.java.refactoring.views.SliceProfileAction"
id="gr.uom.java.jdeodorant.sliceProfileAction"
label="Slice-based Cohesion Metrics...">
</action>
</objectContribution>
<objectContribution
adaptable="false"
id="gr.uom.java.jdeodorant.cloneRefactoring"
objectClass="org.eclipse.jdt.core.IMethod">
<action
class="org.ufba.raide.java.refactoring.views.CloneRefactoringAction"
id="gr.uom.java.jdeodorant.cloneRefactoringAction"
label="Refactor Duplicated Code...">
</action>
</objectContribution>
</extension>
</plugin>