Class ExportInfo

java.lang.Object
ghidra.app.util.bin.format.pe.ExportInfo

public class ExportInfo extends Object
A class to hold the information extracted from a export data directory. NOTE: This class is simply a storage class created for parsing the PE header data structures. It does not map back to a PE data data structure.
  • Method Details

    • getAddress

      public long getAddress()
      Returns the adjusted address where the export occurs.
      Returns:
      the adjusted address where the export occurs
    • getOrdinal

      public int getOrdinal()
      Returns the ordinal value of the export.
      Returns:
      the ordinal value of the export
    • getName

      public String getName()
      Returns the name of the export.
      Returns:
      the name of the export
    • getComment

      public String getComment()
      Returns a comment string containing extra information about the export.
      Returns:
      a comment string containing extra information about the export
    • isForwarded

      public boolean isForwarded()
      Returns true of this export is going to be forwarded. Generally, a forwarded export just through another export.
      Returns:
      true of this export is going to be forwarded
    • toString

      public String toString()
      Overrides:
      toString in class Object
      See Also: