bcv-vf/plugins/python/skeleton.py

14 lines
478 B
Python
Raw Normal View History

2015-07-08 23:35:21 +00:00
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):
2022-01-18 00:53:09 +00:00
def execute(classNodeList, notUsed): #for some reason it requires a second arg
2022-01-18 00:57:40 +00:00
gui = PluginConsole("Skeleton Title")
2015-07-08 23:35:21 +00:00
gui.setVisible(Boolean.TRUE)
2022-01-18 00:57:40 +00:00
gui.appendText("executed skeleton example")