Files
dev/plugins/GroovyPlugin.groovy
2018-01-19 10:56:53 +01:00

10 lines
238 B
Groovy
Executable File

import ch.psi.pshell.ui.Panel;
import javax.swing.JLabel;
import javax.swing.JPanel;
class GroovyPlugin extends Panel{
public JPanel onStart() {
super.onStart();
add(new JLabel("Hello!"));
}
}