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!")); } }