bcv-vf/plugins/Skeleton.js

7 lines
236 B
JavaScript
Raw Normal View History

2021-06-26 13:47:27 +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");
2021-06-26 13:47:27 +00:00
}