2015-07-08 23:35:21 +00:00
|
|
|
import the.bytecode.club.bytecodeviewer.api.*;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import org.objectweb.asm.tree.ClassNode;
|
|
|
|
import the.bytecode.club.bytecodeviewer.decompilers.*;
|
|
|
|
|
|
|
|
public class Skeleton extends Plugin {
|
|
|
|
|
2018-01-30 16:51:56 +00:00
|
|
|
@Override
|
|
|
|
public void execute(ArrayList<ClassNode> classNodesList) {
|
|
|
|
PluginConsole gui = new PluginConsole("Skeleton");
|
|
|
|
gui.setVisible(true);
|
|
|
|
gui.appendText("executed skeleton");
|
|
|
|
}
|
2015-07-08 23:35:21 +00:00
|
|
|
}
|