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.DebugFrameAn 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 voidonDebuggerStatement(org.htmlunit.corejs.javascript.Context cx)voidonEnter(org.htmlunit.corejs.javascript.Context cx, org.htmlunit.corejs.javascript.Scriptable activation, org.htmlunit.corejs.javascript.Scriptable thisObj, java.lang.Object[] args)voidonExceptionThrown(org.htmlunit.corejs.javascript.Context cx, java.lang.Throwable ex)voidonExit(org.htmlunit.corejs.javascript.Context cx, boolean byThrow, java.lang.Object resultOrException)voidonLineChange(org.htmlunit.corejs.javascript.Context cx, int lineNumber)
-
-
-
Method Detail
-
onDebuggerStatement
public void onDebuggerStatement(org.htmlunit.corejs.javascript.Context cx)
- Specified by:
onDebuggerStatementin 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:
onEnterin interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
onExceptionThrown
public void onExceptionThrown(org.htmlunit.corejs.javascript.Context cx, java.lang.Throwable ex)- Specified by:
onExceptionThrownin interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
onExit
public void onExit(org.htmlunit.corejs.javascript.Context cx, boolean byThrow, java.lang.Object resultOrException)- Specified by:
onExitin interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
onLineChange
public void onLineChange(org.htmlunit.corejs.javascript.Context cx, int lineNumber)- Specified by:
onLineChangein interfaceorg.htmlunit.corejs.javascript.debug.DebugFrame
-
-