Class Debugger.SetScriptSourceResponse
- java.lang.Object
-
- org.openqa.selenium.devtools.debugger.Debugger.SetScriptSourceResponse
-
- Enclosing class:
- Debugger
public static class Debugger.SetScriptSourceResponse extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description SetScriptSourceResponse(java.util.List<CallFrame> callFrames, java.lang.Boolean stackChanged, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, ExceptionDetails exceptionDetails)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StackTrace
getAsyncStackTrace()
Async stack trace, if any.StackTraceId
getAsyncStackTraceId()
Async stack trace, if any.java.util.List<CallFrame>
getCallFrames()
New stack trace in case editing has happened while VM was stopped.ExceptionDetails
getExceptionDetails()
Exception details if any.java.lang.Boolean
getStackChanged()
Whether current call stack was modified after applying the changes.
-
-
-
Constructor Detail
-
SetScriptSourceResponse
public SetScriptSourceResponse(java.util.List<CallFrame> callFrames, java.lang.Boolean stackChanged, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, ExceptionDetails exceptionDetails)
-
-
Method Detail
-
getCallFrames
public java.util.List<CallFrame> getCallFrames()
New stack trace in case editing has happened while VM was stopped.
-
getStackChanged
public java.lang.Boolean getStackChanged()
Whether current call stack was modified after applying the changes.
-
getAsyncStackTrace
public StackTrace getAsyncStackTrace()
Async stack trace, if any.
-
getAsyncStackTraceId
public StackTraceId getAsyncStackTraceId()
Async stack trace, if any.
-
getExceptionDetails
public ExceptionDetails getExceptionDetails()
Exception details if any.
-
-