bcv-vf/plugins/python/skeleton.py

18 lines
574 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
2022-01-22 19:36:02 +00:00
#
# This is a skeleton template for BCV's Ruby Plugin System
#
# @author [Your Name Goes Here]
#
2015-07-08 23:35:21 +00:00
2022-01-22 19:36:02 +00:00
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-22 19:03:48 +00:00
gui.appendText("executed skeleton example")