2.9.7 changes
This commit is contained in:
parent
bd9dcd2e67
commit
a1a0767d4d
BIN
libs/jruby-9.0.0.0.rc1.jar
Normal file
BIN
libs/jruby-9.0.0.0.rc1.jar
Normal file
Binary file not shown.
BIN
libs/jython-standalone-2.7.0.jar
Normal file
BIN
libs/jython-standalone-2.7.0.jar
Normal file
Binary file not shown.
14
plugins/Skeleton.gy
Normal file
14
plugins/Skeleton.gy
Normal file
|
@ -0,0 +1,14 @@
|
|||
import the.bytecode.club.bytecodeviewer.api.*;
|
||||
import java.util.ArrayList;
|
||||
import org.objectweb.asm.tree.ClassNode;
|
||||
import the.bytecode.club.bytecodeviewer.decompilers.*;
|
||||
|
||||
public class Skeleton extends Plugin {
|
||||
|
||||
@Override
|
||||
public void execute(ArrayList<ClassNode> classNodesList) {
|
||||
PluginConsole gui = new PluginConsole("Skeleton");
|
||||
gui.setVisible(true);
|
||||
gui.appendText("executed skeleton");
|
||||
}
|
||||
}
|
0
plugins/Skeleton.rb
Normal file
0
plugins/Skeleton.rb
Normal file
13
plugins/skeleton.py
Normal file
13
plugins/skeleton.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from the.bytecode.club.bytecodeviewer.api import Plugin
|
||||
from the.bytecode.club.bytecodeviewer.api import PluginConsole
|
||||
from java.lang import System
|
||||
from java.lang import Boolean
|
||||
from java.util import ArrayList
|
||||
from org.objectweb.asm.tree import ClassNode
|
||||
|
||||
class skeleton(Plugin):
|
||||
|
||||
def execute(classNodeList, poop): #for some reason it requires a second arg
|
||||
gui = PluginConsole("Skeleton")
|
||||
gui.setVisible(Boolean.TRUE)
|
||||
gui.appendText("exceuted skeleton")
|
Loading…
Reference in New Issue
Block a user