Package ghidra.program.util
Class DividerLocation
- java.lang.Object
-
- ghidra.program.util.ProgramLocation
-
- ghidra.program.util.DividerLocation
-
- All Implemented Interfaces:
java.lang.Comparable<ProgramLocation>
public class DividerLocation extends ProgramLocation
DividerLocation
provides information about the location (within a program) of an object that represents some kind of a separation.
-
-
Field Summary
-
Fields inherited from class ghidra.program.util.ProgramLocation
addr, program, refAddr
-
-
Constructor Summary
Constructors Constructor Description DividerLocation()
Default constructor needed for restoring a program location from XMLDividerLocation(Program program, Address addr, GroupPath groupPath, int charOffset)
Create a new DividerLocation.
-
Method Summary
-
Methods inherited from class ghidra.program.util.ProgramLocation
compareAddr, compareTo, equals, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow, hashCode, isValid, restoreState, saveState, toString
-
-
-
-
Constructor Detail
-
DividerLocation
public DividerLocation(Program program, Address addr, GroupPath groupPath, int charOffset)
Create a new DividerLocation.- Parameters:
program
- the program of the locationaddr
- address of bookmarkgroupPath
- object that uniquely identifies a module or fragment by its hierarchy names; this parameter may be nullcharOffset
- character position of the location
-
DividerLocation
public DividerLocation()
Default constructor needed for restoring a program location from XML
-
-