Package ghidra.program.util
Class FieldNameFieldLocation
java.lang.Object
ghidra.program.util.ProgramLocation
ghidra.program.util.CodeUnitLocation
ghidra.program.util.FieldNameFieldLocation
- All Implemented Interfaces:
Cloneable
,Comparable<ProgramLocation>
The
FieldNameFieldLocation
class provides specific information about the Function
Name field within a program location.-
Field Summary
Fields inherited from class ghidra.program.util.ProgramLocation
addr, program, refAddr
-
Constructor Summary
ConstructorDescriptionDefault constructor needed for restoring a field name location from XMLFieldNameFieldLocation
(Program program, Address addr, int[] componentPath, String fieldName, int charOffset) Construct a new FieldNameFieldLocation. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the field name of this location.int
hashCode()
void
restoreState
(Program p, SaveState obj) Restore this program location using the given program and save state object.void
Save this program location to the given save state object.toString()
Methods inherited from class ghidra.program.util.CodeUnitLocation
isValid
Methods inherited from class ghidra.program.util.ProgramLocation
clone, compareAddr, compareTo, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow, getTranslatedCopy
-
Constructor Details
-
FieldNameFieldLocation
public FieldNameFieldLocation(Program program, Address addr, int[] componentPath, String fieldName, int charOffset) Construct a new FieldNameFieldLocation.- Parameters:
program
- the program of the locationaddr
- the address of the code unitcomponentPath
- if not null, it is the array of indexes that point to a specific data type inside of another data typefieldName
- the field namecharOffset
- the character position within the field name for this location.
-
FieldNameFieldLocation
public FieldNameFieldLocation()Default constructor needed for restoring a field name location from XML
-
-
Method Details
-
getFieldName
Returns the field name of this location.- Returns:
- the name.
-
hashCode
public int hashCode()- Overrides:
hashCode
in classProgramLocation
-
equals
- Overrides:
equals
in classProgramLocation
-
saveState
Description copied from class:ProgramLocation
Save this program location to the given save state object.- Overrides:
saveState
in classProgramLocation
- Parameters:
obj
- the save state object for saving the location
-
restoreState
Description copied from class:ProgramLocation
Restore this program location using the given program and save state object.- Overrides:
restoreState
in classProgramLocation
- Parameters:
p
- program to restore fromobj
- the save state to restore from
-
toString
- Overrides:
toString
in classProgramLocation
-