Class DebugFrameAdapter

  • All Implemented Interfaces:
    org.htmlunit.corejs.javascript.debug.DebugFrame
    Direct Known Subclasses:
    DebugFrameImpl

    public class DebugFrameAdapter
    extends java.lang.Object
    implements org.htmlunit.corejs.javascript.debug.DebugFrame
    An adapter class for debug frame implementations. The methods in this class are empty. This class exists as a convenience for creating debug frame objects.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void onDebuggerStatement​(org.htmlunit.corejs.javascript.Context cx)
      void onEnter​(org.htmlunit.corejs.javascript.Context cx, org.htmlunit.corejs.javascript.Scriptable activation, org.htmlunit.corejs.javascript.Scriptable thisObj, java.lang.Object[] args)
      void onExceptionThrown​(org.htmlunit.corejs.javascript.Context cx, java.lang.Throwable ex)
      void onExit​(org.htmlunit.corejs.javascript.Context cx, boolean byThrow, java.lang.Object resultOrException)
      void onLineChange​(org.htmlunit.corejs.javascript.Context cx, int lineNumber)
      • Methods inherited from class java.lang.Object

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

      • DebugFrameAdapter

        public DebugFrameAdapter()
    • Method Detail

      • onDebuggerStatement

        public void onDebuggerStatement​(org.htmlunit.corejs.javascript.Context cx)
        Specified by:
        onDebuggerStatement in interface org.htmlunit.corejs.javascript.debug.DebugFrame
      • onEnter

        public void onEnter​(org.htmlunit.corejs.javascript.Context cx,
                            org.htmlunit.corejs.javascript.Scriptable activation,
                            org.htmlunit.corejs.javascript.Scriptable thisObj,
                            java.lang.Object[] args)
        Specified by:
        onEnter in interface org.htmlunit.corejs.javascript.debug.DebugFrame
      • onExceptionThrown

        public void onExceptionThrown​(org.htmlunit.corejs.javascript.Context cx,
                                      java.lang.Throwable ex)
        Specified by:
        onExceptionThrown in interface org.htmlunit.corejs.javascript.debug.DebugFrame
      • onExit

        public void onExit​(org.htmlunit.corejs.javascript.Context cx,
                           boolean byThrow,
                           java.lang.Object resultOrException)
        Specified by:
        onExit in interface org.htmlunit.corejs.javascript.debug.DebugFrame
      • onLineChange

        public void onLineChange​(org.htmlunit.corejs.javascript.Context cx,
                                 int lineNumber)
        Specified by:
        onLineChange in interface org.htmlunit.corejs.javascript.debug.DebugFrame