public class DisassembleArguments
extends java.lang.Object
Constructor and Description |
---|
DisassembleArguments() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
int |
getInstructionCount()
Number of instructions to disassemble starting at the specified location and offset.
|
java.lang.Integer |
getInstructionOffset()
Optional offset (in instructions) to be applied after the byte offset (if any) before disassembling.
|
java.lang.String |
getMemoryReference()
Memory reference to the base location containing the instructions to disassemble.
|
java.lang.Integer |
getOffset()
Optional offset (in bytes) to be applied to the reference location before disassembling.
|
java.lang.Boolean |
getResolveSymbols()
If true, the adapter should attempt to resolve memory addresses and other values to symbolic names.
|
int |
hashCode() |
void |
setInstructionCount(int instructionCount)
Number of instructions to disassemble starting at the specified location and offset.
|
void |
setInstructionOffset(java.lang.Integer instructionOffset)
Optional offset (in instructions) to be applied after the byte offset (if any) before disassembling.
|
void |
setMemoryReference(java.lang.String memoryReference)
Memory reference to the base location containing the instructions to disassemble.
|
void |
setOffset(java.lang.Integer offset)
Optional offset (in bytes) to be applied to the reference location before disassembling.
|
void |
setResolveSymbols(java.lang.Boolean resolveSymbols)
If true, the adapter should attempt to resolve memory addresses and other values to symbolic names.
|
java.lang.String |
toString() |
@Pure public java.lang.String getMemoryReference()
public void setMemoryReference(java.lang.String memoryReference)
@Pure public java.lang.Integer getOffset()
This is an optional property.
public void setOffset(java.lang.Integer offset)
This is an optional property.
@Pure public java.lang.Integer getInstructionOffset()
This is an optional property.
public void setInstructionOffset(java.lang.Integer instructionOffset)
This is an optional property.
@Pure public int getInstructionCount()
An adapter must return exactly this number of instructions - any unavailable instructions should be replaced with an implementation-defined 'invalid instruction' value.
public void setInstructionCount(int instructionCount)
An adapter must return exactly this number of instructions - any unavailable instructions should be replaced with an implementation-defined 'invalid instruction' value.
@Pure public java.lang.Boolean getResolveSymbols()
This is an optional property.
public void setResolveSymbols(java.lang.Boolean resolveSymbols)
This is an optional property.
@Pure public java.lang.String toString()
toString
in class java.lang.Object
@Pure public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
@Pure public int hashCode()
hashCode
in class java.lang.Object