Class ScriptExecutionEvent

java.lang.Object
java.util.EventObject
weka.gui.scripting.event.ScriptExecutionEvent
All Implemented Interfaces:
Serializable

public class ScriptExecutionEvent extends EventObject
Event that gets sent when a script is executed.
Version:
$Revision: 8034 $
Author:
fracpete (fracpete at waikato dot ac dot nz)
See Also:
  • Constructor Details

    • ScriptExecutionEvent

      public ScriptExecutionEvent(Script source, ScriptExecutionEvent.Type type)
      Initializes the event.
      Parameters:
      source - the script that triggered the event
      type - the type of finish
    • ScriptExecutionEvent

      public ScriptExecutionEvent(Script source, ScriptExecutionEvent.Type type, Object additional)
      Initializes the event.
      Parameters:
      source - the script that triggered the event
      type - the type of finish
      additional - additional information, can be null
  • Method Details

    • getScript

      public Script getScript()
      Returns the script that triggered the event.
      Returns:
      the script
    • getType

      public ScriptExecutionEvent.Type getType()
      Returns the type of event.
      Returns:
      the type
    • hasAdditional

      public boolean hasAdditional()
      Returns whether additional information is available.
      Returns:
      true if additional information is available
      See Also:
    • getAdditional

      public Object getAdditional()
      Returns the additional information.
      Returns:
      the additional information, can be null