Package ghidra.util.table.field
Class OutgoingReferenceEndpoint
- java.lang.Object
-
- ghidra.util.table.field.ReferenceEndpoint
-
- ghidra.util.table.field.OutgoingReferenceEndpoint
-
public class OutgoingReferenceEndpoint extends ReferenceEndpoint
Marker row object that signals to the table API that the references contained therein all share thefrom
address, with each row showing theto
address.
-
-
Constructor Summary
Constructors Constructor Description OutgoingReferenceEndpoint(Reference r, boolean isOffcut)
OutgoingReferenceEndpoint(Reference r, Address toAddress, boolean isOffcut)
A special constructor that allows clients to override the 'toAddress' of the reference.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
Methods inherited from class ghidra.util.table.field.ReferenceEndpoint
getAddress, getReference, getReferenceType, getSource, isOffcut
-
-
-
-
Constructor Detail
-
OutgoingReferenceEndpoint
public OutgoingReferenceEndpoint(Reference r, boolean isOffcut)
-
OutgoingReferenceEndpoint
public OutgoingReferenceEndpoint(Reference r, Address toAddress, boolean isOffcut)
A special constructor that allows clients to override the 'toAddress' of the reference.- Parameters:
r
- the referencetoAddress
- the desired 'toAddress'isOffcut
- false if the given reference points to the min address of a code unit
-
-