Javascript plugin support

This commit is contained in:
Konloch 2021-06-26 10:39:06 -07:00
parent ad05361b37
commit 729f95110d

View file

@ -1,7 +1,7 @@
function execute(classNodeList)
{
var GuiRef = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole");
var gui = new GuiRef("Skeleton");
var PluginConsole = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole");
var gui = new PluginConsole("Skeleton");
gui.setVisible(true);
gui.appendText("exceuted skeleton");
gui.appendText("executed skeleton");
}