First Commit

First commit, beta 1.0, report all bugs to konloch@gmail.com or create a
thread on http://the.bytecode.club
This commit is contained in:
Kalen Kinloch 2014-10-18 16:39:09 -07:00
parent 1f33f0a8cf
commit 06ef9408a4
60 changed files with 7031 additions and 3 deletions

14
plugins/Skeleton.gy Normal file
View file

@ -0,0 +1,14 @@
import the.bytecode.club.bytecodeviewer.plugins.Plugin;
import the.bytecode.club.bytecodeviewer.plugins.PluginConsole;
import java.util.ArrayList;
import org.objectweb.asm.tree.ClassNode;
public class Skeleton extends Plugin {
@Override
public void execute(ArrayList<ClassNode> classNodesList) {
PluginConsole gui = new PluginConsole("Skeleton");
gui.setVisible(true);
gui.appendText("exceuted skeleton");
}
}

15
plugins/Skeleton.rb Normal file
View file

@ -0,0 +1,15 @@
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

13
plugins/skeleton.py Normal file
View file

@ -0,0 +1,13 @@
from the.bytecode.club.bytecodeviewer.plugins import Plugin
from the.bytecode.club.bytecodeviewer.plugins import PluginConsole
from java.lang import System
from java.lang import Boolean
from java.util import ArrayList
from org.objectweb.asm.tree import ClassNode
class skeleton(Plugin):
def execute(classNodeList, poop): #for some reason it requires a second arg
gui = PluginConsole("Skeleton")
gui.setVisible(Boolean.TRUE)
gui.appendText("exceuted skeleton")