Organized Plugins By Language
This commit is contained in:
parent
edd27ea458
commit
dd59d8753e
10 changed files with 0 additions and 0 deletions
15
plugins/ruby/Skeleton.rb
Normal file
15
plugins/ruby/Skeleton.rb
Normal file
|
@ -0,0 +1,15 @@
|
|||
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)
|
||||
gui.appendText("executed skeleton")
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue