diff --git a/plugins/example/ExamplePrintClassesPlugin.js b/plugins/example/ExamplePrintClassesPlugin.js new file mode 100644 index 00000000..7bfb6e56 --- /dev/null +++ b/plugins/example/ExamplePrintClassesPlugin.js @@ -0,0 +1,18 @@ +/** + * This is an example plugin + */ + +var PluginConsole = Java.type("the.bytecode.club.bytecodeviewer.api.PluginConsole"); + +var gui = new PluginConsole("Example Plugin Print Loaded Classes"); + +function execute(classNodeList) +{ + for (index = 0; index < classNodeList.length; index++) + { + var cn = classNodeList[index]; + gui.appendText("Resource: " + cn.name + ".class"); + } + + gui.setVisible(true); +} \ No newline at end of file