forked from ecd-plugin/ecd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
38 lines (38 loc) · 1.53 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
###############################################################################
# Copyright (c) 2017 Chen Chao and other ECD project contributors.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-v10.html
###############################################################################
-->
<plugin>
<extension point="org.eclipse.ui.commands">
<command
name="Decompile With CFR"
categoryId="org.sf.feeling.decompiler"
id="org.sf.feeling.decompiler.decompile.cfr">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
commandId="org.sf.feeling.decompiler.decompile.cfr"
class="org.sf.feeling.decompiler.cfr.actions.DecompileWithCfrHandler">
</handler>
</extension>
<extension
point="org.sf.feeling.decompiler.decompilerAdapters">
<adaptable
class="org.sf.feeling.decompiler.JavaDecompilerPlugin">
<adapter
class="org.sf.feeling.decompiler.cfr.decompiler.CfrDecompilerDescriptor"
id="org.sf.feeling.decompiler.cfr.CfrDecompilerAdapter"
singleton="true"
type="org.sf.feeling.decompiler.editor.IDecompilerDescriptor">
</adapter>
</adaptable>
</extension>
</plugin>