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 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.
-
-
Constructor Summary
Constructors Constructor Description DebugFrameAdapter()
-
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)
-
-
-
Method Detail
-
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, java.lang.Object[] args)
- Specified by:
onEnter
in interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
onExceptionThrown
public void onExceptionThrown(org.htmlunit.corejs.javascript.Context cx, java.lang.Throwable ex)
- Specified by:
onExceptionThrown
in interfaceorg.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 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
-
-