06ef9408a4
First commit, beta 1.0, report all bugs to konloch@gmail.com or create a thread on http://the.bytecode.club
15 lines
426 B
Ruby
15 lines
426 B
Ruby
require 'java'
|
|
|
|
java_import 'the.bytecode.club.bytecodeviewer.plugins.Plugin'
|
|
java_import 'the.bytecode.club.bytecodeviewer.plugins.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)
|
|
gui.appendText("exceuted skeleton")
|
|
end
|
|
end |