Class DataInCodeEntry
java.lang.Object
ghidra.app.util.bin.format.macho.commands.DataInCodeEntry
- All Implemented Interfaces:
StructConverter
Represents a data_in_code_entry structure
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The size (in bytes) of aDataInCodeEntry
structure -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionshort
getKind()
Gets the kindint
Gets the lengthlong
Gets the offsetReturns a structure datatype representing the contents of the implementor of this interface.
-
Field Details
-
SIZE
public static final int SIZEThe size (in bytes) of aDataInCodeEntry
structure- See Also:
-
-
Constructor Details
-
DataInCodeEntry
Creates a newDataInCodeEntry
- Parameters:
reader
- ABinaryReader
positioned at the start of the structure- Throws:
IOException
- if there was an IO-related problem creating the structure
-
-
Method Details
-
getOffset
public long getOffset()Gets the offset- Returns:
- The offset
-
getLength
public int getLength()Gets the length- Returns:
- The length
-
getKind
public short getKind()Gets the kind- Returns:
- The kind
-
toDataType
Description copied from interface:StructConverter
Returns 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:
toDataType
in interfaceStructConverter
- 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:
-