public class StackFrame extends JSONBase
| Modifier and Type | Method and Description |
|---|---|
static StackFrame |
create(Integer id,
String name,
Integer line,
Integer column) |
boolean |
equals(Object obj) |
int |
getColumn()
The column within the line.
|
Integer |
getEndColumn()
An optional end column of the range covered by the stack frame.
|
Integer |
getEndLine()
An optional end line of the range covered by the stack frame.
|
int |
getId()
An identifier for the stack frame.
|
String |
getInstructionPointerReference()
Optional memory reference for the current instruction pointer in this frame.
|
int |
getLine()
The line within the file of the frame.
|
Object |
getModuleId()
The module associated with this frame, if any.
|
String |
getName()
The name of the stack frame, typically a method name.
|
String |
getPresentationHint()
An optional hint for how to present this frame in the UI.
|
Source |
getSource()
The optional source of the frame.
|
int |
hashCode() |
StackFrame |
setColumn(int column) |
StackFrame |
setEndColumn(Integer endColumn) |
StackFrame |
setEndLine(Integer endLine) |
StackFrame |
setId(int id) |
StackFrame |
setInstructionPointerReference(String instructionPointerReference) |
StackFrame |
setLine(int line) |
StackFrame |
setModuleId(Object moduleId) |
StackFrame |
setName(String name) |
StackFrame |
setPresentationHint(String presentationHint) |
StackFrame |
setSource(Source source) |
public int getId()
public StackFrame setId(int id)
public String getName()
public StackFrame setName(String name)
public Source getSource()
public StackFrame setSource(Source source)
public int getLine()
public StackFrame setLine(int line)
public int getColumn()
public StackFrame setColumn(int column)
public Integer getEndLine()
public StackFrame setEndLine(Integer endLine)
public Integer getEndColumn()
public StackFrame setEndColumn(Integer endColumn)
public String getInstructionPointerReference()
public StackFrame setInstructionPointerReference(String instructionPointerReference)
public Object getModuleId()
public StackFrame setModuleId(Object moduleId)
public String getPresentationHint()
public StackFrame setPresentationHint(String presentationHint)
public static StackFrame create(Integer id, String name, Integer line, Integer column)