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.ObjectA 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 longgetAddress()Returns the adjusted address where the export occurs.java.lang.StringgetComment()Returns a comment string containing extra information about the export.java.lang.StringgetName()Returns the name of the export.intgetOrdinal()Returns the ordinal value of the export.booleanisForwarded()Returns true of this export is going to be forwarded.java.lang.StringtoString() 
 - 
 
- 
- 
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:
 toStringin classjava.lang.Object- See Also:
 Object.toString()
 
 - 
 
 -