Package ghidra.util

Interface Issue


  • public interface Issue
    • 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.