Package ghidra.app.util.bin.format.pe
Class ExportInfo
- java.lang.Object
-
- ghidra.app.util.bin.format.pe.ExportInfo
-
public class ExportInfo extends java.lang.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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getAddress()
Returns the adjusted address where the export occurs.java.lang.String
getComment()
Returns a comment string containing extra information about the export.java.lang.String
getName()
Returns the name of the export.int
getOrdinal()
Returns the ordinal value of the export.boolean
isForwarded()
Returns true of this export is going to be forwarded.java.lang.String
toString()
-
-
-
Method Detail
-
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 java.lang.String getName()
Returns the name of the export.- Returns:
- the name of the export
-
getComment
public java.lang.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 java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
- See Also:
Object.toString()
-
-