2014-11-21 22:55:55 +00:00
|
|
|
from the.bytecode.club.bytecodeviewer.api import Plugin
|
|
|
|
from the.bytecode.club.bytecodeviewer.api import PluginConsole
|
2014-10-18 23:39:09 +00:00
|
|
|
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")
|