2022-01-22 19:09:24 +00:00
|
|
|
|
|
|
|
/**
|
2022-01-22 19:20:58 +00:00
|
|
|
** This is a skeleton template for BCV's Javascript Plugin System
|
|
|
|
**
|
|
|
|
** @author [Your Name Goes Here]
|
|
|
|
**/
|
2022-01-22 19:09:24 +00:00
|
|
|
|
2022-01-08 10:48:25 +00:00
|
|
|
function execute(classNodeList) {
|
2021-06-26 17:39:06 +00:00
|
|
|
var PluginConsole = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole");
|
2022-01-18 00:58:52 +00:00
|
|
|
var gui = new PluginConsole("Skeleton Title");
|
2021-06-26 13:47:27 +00:00
|
|
|
gui.setVisible(true);
|
2022-01-18 00:58:52 +00:00
|
|
|
gui.appendText("executed skeleton example");
|
2022-01-22 19:02:29 +00:00
|
|
|
}
|