public class DisassembledInstruction extends JSONBase
| Modifier and Type | Method and Description |
|---|---|
static DisassembledInstruction |
create(String address,
String instruction) |
boolean |
equals(Object obj) |
String |
getAddress()
The address of the instruction.
|
Integer |
getColumn()
The column within the line that corresponds to this instruction, if any.
|
Integer |
getEndColumn()
The end column of the range that corresponds to this instruction, if any.
|
Integer |
getEndLine()
The end line of the range that corresponds to this instruction, if any.
|
String |
getInstruction()
Text representing the instruction and its operands, in an implementation-defined format.
|
String |
getInstructionBytes()
Optional raw bytes representing the instruction and its operands, in an
implementation-defined format.
|
Integer |
getLine()
The line within the source location that corresponds to this instruction, if any.
|
Source |
getLocation()
Source location that corresponds to this instruction, if any.
|
String |
getSymbol()
Name of the symbol that corresponds with the location of this instruction, if any.
|
int |
hashCode() |
DisassembledInstruction |
setAddress(String address) |
DisassembledInstruction |
setColumn(Integer column) |
DisassembledInstruction |
setEndColumn(Integer endColumn) |
DisassembledInstruction |
setEndLine(Integer endLine) |
DisassembledInstruction |
setInstruction(String instruction) |
DisassembledInstruction |
setInstructionBytes(String instructionBytes) |
DisassembledInstruction |
setLine(Integer line) |
DisassembledInstruction |
setLocation(Source location) |
DisassembledInstruction |
setSymbol(String symbol) |
public String getAddress()
public DisassembledInstruction setAddress(String address)
public String getInstructionBytes()
public DisassembledInstruction setInstructionBytes(String instructionBytes)
public String getInstruction()
public DisassembledInstruction setInstruction(String instruction)
public String getSymbol()
public DisassembledInstruction setSymbol(String symbol)
public Source getLocation()
public DisassembledInstruction setLocation(Source location)
public Integer getLine()
public DisassembledInstruction setLine(Integer line)
public Integer getColumn()
public DisassembledInstruction setColumn(Integer column)
public Integer getEndLine()
public DisassembledInstruction setEndLine(Integer endLine)
public Integer getEndColumn()
public DisassembledInstruction setEndColumn(Integer endColumn)
public static DisassembledInstruction create(String address, String instruction)