Class EnvironmentSuspendedEvent

  • All Implemented Interfaces:
    java.io.Serializable

    public class EnvironmentSuspendedEvent
    extends java.util.EventObject
    Event describing a suspension of an environment (ie because it hit a breakpoint).
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class java.util.EventObject

        source
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      DebuggedEnvironment getEnvironment()
      The environment that was suspended
      int getLine()
      The line number in the template where the execution of the environment was suspended.
      java.lang.String getName()
      The name of the template where the execution of the environment was suspended
      • Methods inherited from class java.util.EventObject

        getSource, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • EnvironmentSuspendedEvent

        public EnvironmentSuspendedEvent​(java.lang.Object source,
                                         java.lang.String templateName,
                                         int line,
                                         DebuggedEnvironment env)
    • Method Detail

      • getName

        public java.lang.String getName()
        The name of the template where the execution of the environment was suspended
        Returns:
        String the template name
      • getLine

        public int getLine()
        The line number in the template where the execution of the environment was suspended.
        Returns:
        int the line number
      • getEnvironment

        public DebuggedEnvironment getEnvironment()
        The environment that was suspended
        Returns:
        DebuggedEnvironment