Package ghidra.util.table.field
Class ReferenceEndpoint
- java.lang.Object
-
- ghidra.util.table.field.ReferenceEndpoint
-
- Direct Known Subclasses:
IncomingReferenceEndpoint
,OutgoingReferenceEndpoint
public abstract class ReferenceEndpoint extends java.lang.Object
An object that is one end of aReference
. This is used by table models that want to show all references from one location to many other locations or models that wish to show all references to one location from many other locations.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ReferenceEndpoint(Reference reference, Address address, RefType refType, boolean isOffcut, SourceType source)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Address
getAddress()
Reference
getReference()
RefType
getReferenceType()
SourceType
getSource()
boolean
isOffcut()
-
-
-
Constructor Detail
-
ReferenceEndpoint
protected ReferenceEndpoint(Reference reference, Address address, RefType refType, boolean isOffcut, SourceType source)
-
-
Method Detail
-
getAddress
public Address getAddress()
-
getReference
public Reference getReference()
-
isOffcut
public boolean isOffcut()
-
getReferenceType
public RefType getReferenceType()
-
getSource
public SourceType getSource()
-
-