06ef9408a4
First commit, beta 1.0, report all bugs to konloch@gmail.com or create a thread on http://the.bytecode.club
14 lines
No EOL
420 B
Text
14 lines
No EOL
420 B
Text
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");
|
|
}
|
|
} |