Package ghidra.app.merge.listing
Class CodeUnitDetails
java.lang.Object
ghidra.app.merge.listing.CodeUnitDetails
This is a class with static methods for obtaining information about a code unit and its
references. The information is provided as a String.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
Gets a string that indicates the code unit along with its overrides.static String
Gets a string that indicates the code unit along with its overrides and its "from" references.static String
Gets a string that indicates the references from a code unit.
-
Constructor Details
-
CodeUnitDetails
public CodeUnitDetails()
-
-
Method Details
-
getInstructionDetails
Gets a string that indicates the code unit along with its overrides and its "from" references. This can contain new line characters.- Parameters:
cu
- the code unit- Returns:
- info about the code unit and its references.
-
getCodeUnitDetails
Gets a string that indicates the code unit along with its overrides. This can contain new line characters.- Parameters:
cu
- the code unit- Returns:
- info about the code unit.
-
getReferenceDetails
Gets a string that indicates the references from a code unit. This can contain new line characters.
Note: Data currently only indicates references on the minimum address.- Parameters:
cu
- the code unit- Returns:
- info about the code unit's references.
-