10 lines
238 B
Groovy
Executable File
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!"));
|
|
}
|
|
} |