2014-10-18 23:39:09 +00:00
|
|
|
require 'java'
|
|
|
|
|
2014-11-21 22:55:55 +00:00
|
|
|
java_import 'the.bytecode.club.bytecodeviewer.api.Plugin'
|
|
|
|
java_import 'the.bytecode.club.bytecodeviewer.api.PluginConsole'
|
2014-10-18 23:39:09 +00:00
|
|
|
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)
|
|
|
|
gui.appendText("exceuted skeleton")
|
|
|
|
end
|
|
|
|
end
|