2021-06-26 13:00:30 +00:00
|
|
|
require 'java'
|
|
|
|
|
|
|
|
java_import 'the.bytecode.club.bytecodeviewer.api.Plugin'
|
|
|
|
java_import 'the.bytecode.club.bytecodeviewer.api.PluginConsole'
|
|
|
|
java_import 'java.lang.System'
|
|
|
|
java_import 'java.util.ArrayList'
|
|
|
|
java_import 'org.objectweb.asm.tree.ClassNode'
|
|
|
|
|
|
|
|
class Skeleton < Plugin
|
|
|
|
def execute(classNodeList)
|
|
|
|
gui = PluginConsole.new "Skeleton"
|
|
|
|
gui.setVisible(true)
|
2021-06-26 17:39:54 +00:00
|
|
|
gui.appendText("executed skeleton")
|
2021-06-26 13:00:30 +00:00
|
|
|
end
|
|
|
|
end
|