Home
Categories
Dictionary
Download
Project Details
Changes Log
FAQ
License

Integrating the script framework in swing



There are several Swing utility classes helping to use the API in a Swing environment:

Dependencies

You just need to have the scriptHelperSwing.jar file in your Classpath.

Showing logs

Main Article: Swing Script logger

Logs are handled by the DefaultSwingScriptLogger and the DefaultSwingScriptLoggerArea classes.

To show the logs in a Swing window, just use the following:
   ScriptWrapper<Script> wrapper = new GroovyScriptWrapper() {
   }
   ...
   DefaultSwingScriptLogger() logger = new DefaultSwingScriptLogger();
   wrapper.setScriptLogger(logger);

Showing exceptions


Exceptions StackTrace are handled by the SwingExceptionListener class.

To show the exceptions in a Swing window, just use the following:
   ScriptWrapper<Script> wrapper = new GroovyScriptWrapper() {
   }
   ...
   SwingExceptionListener listener = new SwingExceptionListener();
   wrapper.addExceptionListener(listener);
Then the first exception encountered during the compilation or execution of the script will popup the following window, for example:
swingError
StackTraces are also shown and clicking on a StackTrace element allows to go to the associated line in the script. For example:
swingErrorStackTrace

See also


Categories: swing

Copyright 2019-2020 Herve Girod. All Rights Reserved. Documentation and source under the BSD licence