bcv-vf/plugins/Skeleton.rb
Kalen Kinloch 06ef9408a4 First Commit
First commit, beta 1.0, report all bugs to konloch@gmail.com or create a
thread on http://the.bytecode.club
2014-10-18 16:39:09 -07:00

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