Code Cleanup
This commit is contained in:
parent
595bbb4463
commit
acaf95666a
1 changed files with 6 additions and 1 deletions
|
@ -5,8 +5,13 @@ from java.lang import Boolean
|
||||||
from java.util import ArrayList
|
from java.util import ArrayList
|
||||||
from org.objectweb.asm.tree import ClassNode
|
from org.objectweb.asm.tree import ClassNode
|
||||||
|
|
||||||
class skeleton(Plugin):
|
#
|
||||||
|
# This is a skeleton template for BCV's Ruby Plugin System
|
||||||
|
#
|
||||||
|
# @author [Your Name Goes Here]
|
||||||
|
#
|
||||||
|
|
||||||
|
class skeleton(Plugin):
|
||||||
def execute(classNodeList, notUsed): #for some reason it requires a second arg
|
def execute(classNodeList, notUsed): #for some reason it requires a second arg
|
||||||
gui = PluginConsole("Skeleton Title")
|
gui = PluginConsole("Skeleton Title")
|
||||||
gui.setVisible(Boolean.TRUE)
|
gui.setVisible(Boolean.TRUE)
|
||||||
|
|
Loading…
Reference in a new issue