bcv-vf/plugins/Skeleton.gy

15 lines
361 B
Text
Raw Normal View History

2021-12-19 23:24:17 +00:00
import org.objectweb.asm.tree.ClassNode
import the.bytecode.club.bytecodeviewer.api.Plugin
import the.bytecode.club.bytecodeviewer.api.PluginConsole
2015-07-08 23:35:21 +00:00
2021-12-19 23:24:17 +00:00
class Skeleton extends Plugin {
2015-07-08 23:35:21 +00:00
@Override
2021-12-19 23:24:17 +00:00
void execute(List<ClassNode> classNodesList) {
PluginConsole gui = new PluginConsole("Skeleton")
gui.setVisible(true)
gui.appendText("executed skeleton")
2015-07-08 23:35:21 +00:00
}
2021-12-19 23:24:17 +00:00
}