Package ghidra.program.util
Class FunctionStartParametersFieldLocation
java.lang.Object
ghidra.program.util.ProgramLocation
ghidra.program.util.FunctionLocation
ghidra.program.util.FunctionSignatureFieldLocation
ghidra.program.util.FunctionStartParametersFieldLocation
- All Implemented Interfaces:
Cloneable
,Comparable<ProgramLocation>
The
FunctionStartParametersFieldLocation
class provides a field
for the open parenthesis of a function within a program location.-
Field Summary
Fields inherited from class ghidra.program.util.FunctionLocation
functionAddr
Fields inherited from class ghidra.program.util.ProgramLocation
addr, program, refAddr
-
Constructor Summary
ConstructorDescriptionDefault constructor needed for restoring a program location from XMLFunctionStartParametersFieldLocation
(Program program, Address locationAddr, Address functionAddr, int charOffset, String signature) Construct a new FunctionStartParametersFieldLocation object. -
Method Summary
Methods inherited from class ghidra.program.util.FunctionSignatureFieldLocation
equals, getSignature, hashCode, isFieldBasedPositioning, restoreState, saveState, toString
Methods inherited from class ghidra.program.util.FunctionLocation
getFunctionAddress, isValid
Methods inherited from class ghidra.program.util.ProgramLocation
clone, compareAddr, compareTo, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow, getTranslatedCopy
-
Constructor Details
-
FunctionStartParametersFieldLocation
public FunctionStartParametersFieldLocation(Program program, Address locationAddr, Address functionAddr, int charOffset, String signature) Construct a new FunctionStartParametersFieldLocation object.- Parameters:
program
- the program of the locationlocationAddr
- the address of the listing location (i.e., referent code unit)functionAddr
- the function addresscharOffset
- the position within the function name string for this location.signature
- the function signature
-
FunctionStartParametersFieldLocation
public FunctionStartParametersFieldLocation()Default constructor needed for restoring a program location from XML
-