Class ResourceStringInfo
- java.lang.Object
-
- ghidra.app.util.bin.format.pe.resource.ResourceStringInfo
-
public class ResourceStringInfo extends java.lang.ObjectA class to hold the information extracted from a resource 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.
-
-
Constructor Summary
Constructors Constructor Description ResourceStringInfo(int address, java.lang.String string, int length)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAddress()Returns the adjusted address where the resource exists.intgetLength()Returns the length of the resource.java.lang.StringgetString()Returns the resource string.
-
-
-
Method Detail
-
getAddress
public int getAddress()
Returns the adjusted address where the resource exists.- Returns:
- the adjusted address where the resource exists
-
getString
public java.lang.String getString()
Returns the resource string.- Returns:
- the resource string
-
getLength
public int getLength()
Returns the length of the resource.- Returns:
- the length of the resource
-
-