Package org.htmlunit.javascript
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
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, Object[] args) void
onExceptionThrown
(org.htmlunit.corejs.javascript.Context cx, Throwable ex) void
void
onLineChange
(org.htmlunit.corejs.javascript.Context cx, int lineNumber)
-
Constructor Details
-
DebugFrameAdapter
public DebugFrameAdapter()
-
-
Method Details
-
onDebuggerStatement
public void onDebuggerStatement(org.htmlunit.corejs.javascript.Context cx) - Specified by:
onDebuggerStatement
in interfaceorg.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 interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
onExceptionThrown
- Specified by:
onExceptionThrown
in interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
onExit
public void onExit(org.htmlunit.corejs.javascript.Context cx, boolean byThrow, Object resultOrException) - Specified by:
onExit
in interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
onLineChange
public void onLineChange(org.htmlunit.corejs.javascript.Context cx, int lineNumber) - Specified by:
onLineChange
in interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-