Home
Categories
Dictionary
Download
Project Details
Changes Log
FAQ
License

Swing Script logger



The DefaultSwingScriptLogger class is a swing implementation of the ScriptLogger.

Overview

There are two Swing utility classes which implement the Script logger interface: To show the logs in a Swing window, just use the following after creating the ScriptWrapper:
   ScriptWrapper<Script> wrapper = new GroovyScriptWrapper() {
   }
   ...
   DefaultSwingScriptLogger() logger = new DefaultSwingScriptLogger();
   wrapper.setScriptLogger(logger);

Swing logger methods

General logger methods

The following methods have an implementation in the Swing logger:
The Swing implementation of the Script logger has methods which allow to show hyperlinked content.

Hyperlinks can show only one lilnk for a message. For example:
   int i = 0;
   public void process(TreeElement element) {
      i++;
      String linkID = >the link ID generated from the element>
      logger.appendLink("the element " + i, linkID);
   }      
It is also possible to show more than one link for one message. For example:
   public void process(TreeElement element1, TreeElement element2) {
      HyperlinkElement linkElt1 = new HyperlinkElement(element1.name, element1);
      HyperlinkElement linkElt2 = new HyperlinkElement(element2.name, element2);      
      logger.appendObjectLinks("The elements are %1 and %2", linkElt1, linkElt2);
   }     

Managing the tabs

Main Article: Script logger

The Swing implementation of the Script logger will automatically append tabulation characters ( &emsp;) for the logger area before the messages. You don't need to use the ScriptLogger.getTab() method to use the tabs. For example in the following code the tabs will be
   ScriptWrapper<Script> wrapper = new GroovyScriptWrapper() {
   }
   ...
   DefaultSwingScriptLogger() logger = new DefaultSwingScriptLogger();
   wrapper.setScriptLogger(logger); // set the Swing script logger
   wrapper.installScript(file); // install the script
      
   logger.append("Parent");
   logger.setTab(1);
   logger.append("Child 1");
   logger.append("Child 2");
   logger.setTab(2);
   logger.append("Grandchild");

You are still able to use the ScriptLogger.getTab() method, to print tabs when writing messages on the console or in a File.

See also


Categories: api | swing

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