Script
interface from the Groovy tutorial, and run the script through a Swing application. This script application:public interface Script { public int execute(); }
JFrame
to integrate the editor and run the script execution:public class GroovySwingTutorial extends JFrame { private AbstractAction runAction; public GroovySwingTutorial() { super("Groovy Swing Tutorial"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); createContent(); } public static void main(String[] args) { GroovySwingTutorial1 theFrame = new GroovySwingTutorial1(); theFrame.setVisible(true); } private void createContent() { Container pane = this.getContentPane(); pane.setLayout(new BorderLayout()); JMenuBar mbar = new JMenuBar(); this.setJMenuBar(mbar); JMenu fileMenu = new JMenu("File"); AbstractAction openAction = new AbstractAction("Open Script") { public void actionPerformed(ActionEvent e) { File file = openScript(); if (file != null) { createScriptObject(file); } } }; mbar.add(fileMenu); fileMenu.add(openAction); JMenu runtimeMenu = new JMenu("Runtime"); runAction = new AbstractAction("Run Script") { public void actionPerformed(ActionEvent e) { execute(); } }; mbar.add(runtimeMenu); runAction.setEnabled(false); runtimeMenu.add(runAction); this.pack(); } public boolean createScriptObject(File file) { return true; } private File openScript() { JFileChooser chooser = new JFileChooser("Open Script"); chooser.setCurrentDirectory(new File(System.getProperty("user.dir"))); chooser.setDialogType(JFileChooser.OPEN_DIALOG); chooser.setFileSelectionMode(JFileChooser.FILES_ONLY); chooser.addChoosableFileFilter(new FileFilter() { @Override public boolean accept(File pathname) { String path = pathname.getName(); return path.endsWith(".groovy"); } @Override public String getDescription() { return "Groovy files"; } }); int ret = chooser.showOpenDialog(null); if (ret == JFileChooser.APPROVE_OPTION) { return chooser.getSelectedFile(); } else { return null; } } public void execute() { } }We will have the following result:
createScriptObject(File)
and the execute()
methods, and we did not add any Script Editor to the window content. That is what we will need to do to:createContent()
method to add the editor component:public class GroovySwingTutorial extends JFrame { private AbstractAction runAction; private EditorScriptComponent scriptComponent = null; private void createContent() { Container pane = this.getContentPane(); pane.setLayout(new BorderLayout()); scriptComponent = new EditorScriptComponent(); pane.add(scriptComponent, BorderLayout.CENTER); ... } }
createScriptObject(File)
method, which is called when a script is opened:public class GroovySwingTutorial extends JFrame { private AbstractAction runAction; private EditorScriptComponent scriptComponent = null; private DefaultSwingScriptLogger logger = null; public boolean createScriptObject(File file) { // create the Groovy script wrapper wrapper = new GroovyScriptWrapper<Script>() { }; // create the script context DefaultSwingScriptContext context = new DefaultSwingScriptContext(); wrapper.setScriptContext(context); // set that will want to log the exceptions wrapper.logExceptions(true); // add the imports for our script helper wrapper.addImports(DefaultSwingScriptHelper.getImports()); // listen to script eceptions SwingExceptionListener listener = new SwingExceptionListener(); listener.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // set the script logger logger = new DefaultSwingScriptLogger(); wrapper.addExceptionListener(listener); wrapper.setScriptLogger(logger); // install the script wrapper.installScript(file); // add the script to the editor script component scriptComponent.setScriptWrapper(wrapper); runAction.setEnabled(true); return true; }
execute()
method, which is called when we select "run":public void execute() { logger.setVisible(true); Script script = wrapper.getScript(); int result = script.execute(); System.out.println("Result: " + result); }
Copyright 2019-2020 Herve Girod. All Rights Reserved. Documentation and source under the BSD licence