Package ghidra.app.services
Class DataTypeReference
- java.lang.Object
-
- ghidra.app.services.DataTypeReference
-
public class DataTypeReference extends java.lang.Object
A container class to hold information about a location that references aDataType
.
-
-
Constructor Summary
Constructors Constructor Description DataTypeReference(DataType dataType, java.lang.String fieldName, Function function, Address address, ghidra.app.plugin.core.navigation.locationreferences.LocationReferenceContext context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Address
getAddress()
ghidra.app.plugin.core.navigation.locationreferences.LocationReferenceContext
getContext()
DataType
getDataType()
Function
getFunction()
int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getDataType
public DataType getDataType()
-
getFunction
public Function getFunction()
-
getAddress
public Address getAddress()
-
getContext
public ghidra.app.plugin.core.navigation.locationreferences.LocationReferenceContext getContext()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-