18 lines
No EOL
421 B
Text
18 lines
No EOL
421 B
Text
import org.objectweb.asm.tree.ClassNode
|
|
import the.bytecode.club.bytecodeviewer.api.*
|
|
|
|
/**
|
|
** This is a skeleton template for BCV's Groovy Plugin System
|
|
**
|
|
** @author [Your Name Goes Here]
|
|
**/
|
|
|
|
class Skeleton extends Plugin {
|
|
|
|
@Override
|
|
void execute(List<ClassNode> classNodesList) {
|
|
PluginConsole gui = new PluginConsole("Skeleton Title")
|
|
gui.setVisible(true)
|
|
gui.appendText("executed skeleton example")
|
|
}
|
|
} |