Package ghidra.program.util
Class FieldNameFieldLocation
- java.lang.Object
-
- ghidra.program.util.ProgramLocation
-
- ghidra.program.util.CodeUnitLocation
-
- ghidra.program.util.FieldNameFieldLocation
-
- All Implemented Interfaces:
java.lang.Comparable<ProgramLocation>
public class FieldNameFieldLocation extends CodeUnitLocation
TheFieldNameFieldLocation
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
Constructors Constructor Description FieldNameFieldLocation()
Default constructor needed for restoring a field name location from XMLFieldNameFieldLocation(Program program, Address addr, int[] componentPath, java.lang.String fieldName, int charOffset)
Construct a new FieldNameFieldLocation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getFieldName()
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
saveState(SaveState obj)
Save this program location to the given save state object.java.lang.String
toString()
-
Methods inherited from class ghidra.program.util.CodeUnitLocation
isValid
-
Methods inherited from class ghidra.program.util.ProgramLocation
compareAddr, compareTo, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow
-
-
-
-
Constructor Detail
-
FieldNameFieldLocation
public FieldNameFieldLocation(Program program, Address addr, int[] componentPath, java.lang.String fieldName, int charOffset)
Construct a new FieldNameFieldLocation.- Parameters:
program
- the program of the locationaddr
- the address of the codeunit.componentPath
- 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 Detail
-
getFieldName
public java.lang.String getFieldName()
Returns the field name of this location.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classProgramLocation
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classProgramLocation
-
saveState
public void saveState(SaveState obj)
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
public void restoreState(Program p, SaveState obj)
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
public java.lang.String toString()
- Overrides:
toString
in classProgramLocation
-
-