public class CallFrame extends Object
| Constructor and Description |
|---|
CallFrame() |
| Modifier and Type | Method and Description |
|---|---|
String |
getCallFrameId()
Call frame identifier.
|
Location |
getFunctionLocation()
Location in the source code.
|
String |
getFunctionName()
Name of the JavaScript function called on this call frame.
|
Location |
getLocation()
Location in the source code.
|
RemoteObject |
getReturnValue()
The value being returned, if the function is at return point.
|
List<Scope> |
getScopeChain()
Scope chain for this call frame.
|
RemoteObject |
getThat()
`this` object for this call frame.
|
String |
getUrl()
JavaScript script name or url.
|
void |
setCallFrameId(String callFrameId)
Call frame identifier.
|
void |
setFunctionLocation(Location functionLocation)
Location in the source code.
|
void |
setFunctionName(String functionName)
Name of the JavaScript function called on this call frame.
|
void |
setLocation(Location location)
Location in the source code.
|
void |
setReturnValue(RemoteObject returnValue)
The value being returned, if the function is at return point.
|
void |
setScopeChain(List<Scope> scopeChain)
Scope chain for this call frame.
|
void |
setThat(RemoteObject that)
`this` object for this call frame.
|
void |
setUrl(String url)
JavaScript script name or url.
|
public String getCallFrameId()
public void setCallFrameId(String callFrameId)
public String getFunctionName()
public void setFunctionName(String functionName)
public Location getFunctionLocation()
public void setFunctionLocation(Location functionLocation)
public Location getLocation()
public void setLocation(Location location)
public String getUrl()
public void setUrl(String url)
public RemoteObject getThat()
public void setThat(RemoteObject that)
public RemoteObject getReturnValue()
public void setReturnValue(RemoteObject returnValue)
Copyright © 2020. All rights reserved.