Package ghidra.app.util.bin.format.som
Class SomLinkerFootprintAuxHeader
java.lang.Object
ghidra.app.util.bin.format.som.SomAuxHeader
ghidra.app.util.bin.format.som.SomLinkerFootprintAuxHeader
- All Implemented Interfaces:
StructConverter
Represents a SOM
linker_footprint structure- See Also:
-
Field Summary
Fields inherited from class ghidra.app.util.bin.format.som.SomAuxHeader
auxId -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetHtime()Returns the htime.Returns the product ID.Returns the version ID.Returns a structure datatype representing the contents of the implementor of this interface.Methods inherited from class ghidra.app.util.bin.format.som.SomAuxHeader
getAuxId, getLength
-
Constructor Details
-
SomLinkerFootprintAuxHeader
Creates a newSomLinkerFootprintAuxHeader- Parameters:
reader- ABinaryReaderpositioned at the start of the auxiliary header- Throws:
IOException- if there was an IO-related error
-
-
Method Details
-
getProductId
Returns the product ID.- Returns:
- the product ID
-
getVersionId
Returns the version ID.- Returns:
- the version ID
-
getHtime
Returns the htime.- Returns:
- the htime
-
toDataType
Description copied from interface:StructConverterReturns a structure datatype representing the contents of the implementor of this interface.For example, given:
class A { int foo; double bar; }The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.
- Specified by:
toDataTypein interfaceStructConverter- Specified by:
toDataTypein classSomAuxHeader- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException- when a datatype of the same name already existsIOException- if an IO-related error occurs- See Also:
-