Package ghidra.util
Interface Issue
-
public interface Issue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCategory()
Returns the category for this issue.java.lang.String
getDescription()
Returns a detailed description of the issue.java.util.List<Fixup>
getPossibleFixups()
Returns a list of possible Fixup objects for this issue.Location
getPrimaryLocation()
Returns a Location object that describes where the issue occurred.java.util.List<Location>
getSecondaryLocations()
Returns a list of locations related to the issue that are not the primary issue location.
-
-
-
Method Detail
-
getCategory
java.lang.String getCategory()
Returns the category for this issue. Categories may use '.' as separators to present a hierarchical category structure.- Returns:
- the category for this issue.
-
getDescription
java.lang.String getDescription()
Returns a detailed description of the issue.- Returns:
- a detailed description of the issue.
-
getPrimaryLocation
Location getPrimaryLocation()
Returns a Location object that describes where the issue occurred.- Returns:
- a Location object that describes where the issue occurred. May return null if the issue is not related to a specific location.
-
getSecondaryLocations
java.util.List<Location> getSecondaryLocations()
Returns a list of locations related to the issue that are not the primary issue location.- Returns:
- a list of locations related to the issue that are not the primary issue location. This list may be empty, but not null.
-
getPossibleFixups
java.util.List<Fixup> getPossibleFixups()
Returns a list of possible Fixup objects for this issue.- Returns:
- a list of possible Fixup objects for this issue. This list may be empty, but not null.
-
-