Class DebugFrameAdapter

java.lang.Object
org.htmlunit.javascript.DebugFrameAdapter
All Implemented Interfaces:
org.htmlunit.corejs.javascript.debug.DebugFrame
Direct Known Subclasses:
DebugFrameImpl

public class DebugFrameAdapter extends 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.
  • Constructor Details

    • DebugFrameAdapter

      public DebugFrameAdapter()
  • Method Details

    • 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, Object[] args)
      Specified by:
      onEnter in interface org.htmlunit.corejs.javascript.debug.DebugFrame
    • onExceptionThrown

      public void onExceptionThrown(org.htmlunit.corejs.javascript.Context cx, 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, 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