Package ghidra.program.util
Class MarkerLocation
- java.lang.Object
- 
- ghidra.program.util.MarkerLocation
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class MarkerLocation extends java.lang.Object implements java.io.SerializableMarker location in the tool navigation bars- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description MarkerLocation(MarkerSet markers, Program program, Address addr, int x, int y)Construct a new MarkerLocation.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)AddressgetAddr()Returns the address.MarkerSetgetMarkerManager()Returns the Marker Manager.ProgramgetProgram()Returns the program.intgetX()Returns the X screen location of the popup point.intgetY()Returns the Y screen location of the popup point.inthashCode()
 
- 
- 
- 
Constructor Detail- 
MarkerLocationpublic MarkerLocation(MarkerSet markers, Program program, Address addr, int x, int y) Construct a new MarkerLocation.- Parameters:
- markers- marker manager service
- program- program containing the address
- addr- address of the location
- x- x position of the popup point on the screen
- y- y position of the popup point on the screen
 
 
- 
 - 
Method Detail- 
getProgrampublic Program getProgram() Returns the program.- Returns:
- the program for this marker location
 
 - 
getAddrpublic Address getAddr() Returns the address.- Returns:
- the address for this marker location
 
 - 
getMarkerManagerpublic MarkerSet getMarkerManager() Returns the Marker Manager.- Returns:
- the marker manager
 
 - 
getXpublic int getX() Returns the X screen location of the popup point.- Returns:
- the X coordinate for the screen location.
 
 - 
getYpublic int getY() Returns the Y screen location of the popup point.- Returns:
- the Y coordinate for the screen location.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 
- 
 
-