Package ghidra.app.util.bin.format.pe
Class ImportInfo
- java.lang.Object
-
- ghidra.app.util.bin.format.pe.ImportInfo
-
public class ImportInfo extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAddress()
Returns the adjusted address where the import occurs.java.lang.String
getComment()
Returns a comment string containing extra information about the import.java.lang.String
getDLL()
Returns the name of the imported DLL.java.lang.String
getName()
Returns the name of the imported symbol.boolean
isBound()
Returns true if this is a bound import.
-
-
-
Method Detail
-
getAddress
public int getAddress()
Returns the adjusted address where the import occurs.- Returns:
- the adjusted address where the import occurs
-
getComment
public java.lang.String getComment()
Returns a comment string containing extra information about the import.- Returns:
- a comment string containing extra information about the import
-
getDLL
public java.lang.String getDLL()
Returns the name of the imported DLL.- Returns:
- the name of the imported DLL
-
getName
public java.lang.String getName()
Returns the name of the imported symbol.- Returns:
- the name of the imported symbol
-
isBound
public boolean isBound()
Returns true if this is a bound import.- Returns:
- true if this is a bound import
-
-