bcv-vf/plugins/Skeleton.js

7 lines
237 B
JavaScript
Raw Normal View History

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");
var gui = new PluginConsole("Skeleton");
2021-06-26 13:47:27 +00:00
gui.setVisible(true);
2021-06-26 17:39:06 +00:00
gui.appendText("executed skeleton");
2022-01-08 10:48:25 +00:00
}