Class CliTableField
java.lang.Object
ghidra.app.util.bin.format.pe.cli.tables.CliAbstractTable
ghidra.app.util.bin.format.pe.cli.tables.CliTableField
- All Implemented Interfaces:
PeMarkupable
,StructConverter
Describes the Field table. Each row represents a field in a TypeDef class. Fields are stored one after the other, grouped by class.
References to the Field table encode where the fields for a class start and end.
-
Nested Class Summary
-
Field Summary
Fields inherited from class ghidra.app.util.bin.format.pe.cli.tables.CliAbstractTable
blobs, metadataStream, numRows, PATH, readerOffset, rows, strings, tableType, userStrings
-
Constructor Summary
ConstructorDescriptionCliTableField
(BinaryReader reader, CliStreamMetadata stream, CliTypeTable tableId) -
Method Summary
Modifier and TypeMethodDescriptionGets the data type of a row in this table.void
markup
(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader ntHeader) Marks up a PE structure.Methods inherited from class ghidra.app.util.bin.format.pe.cli.tables.CliAbstractTable
getNumRows, getRow, getRowRepresentationSafe, getRowShortRepSafe, getRowSize, getTableSize, getTableType, readBlobIndex, readGuidIndex, readStringIndex, readTableIndex, toDataType, toString
-
Constructor Details
-
CliTableField
public CliTableField(BinaryReader reader, CliStreamMetadata stream, CliTypeTable tableId) throws IOException - Throws:
IOException
-
-
Method Details
-
markup
public void markup(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader ntHeader) throws DuplicateNameException, CodeUnitInsertionException, IOException Description copied from interface:PeMarkupable
Marks up a PE structure.- Specified by:
markup
in interfacePeMarkupable
- Overrides:
markup
in classCliAbstractTable
- Parameters:
program
- The program to markup.isBinary
- True if the program is binary; otherwise, false.monitor
- The monitor.log
- The log.ntHeader
- The PE's NT Header structure.- Throws:
DuplicateNameException
CodeUnitInsertionException
IOException
-
getRowDataType
Description copied from class:CliAbstractTable
Gets the data type of a row in this table.- Specified by:
getRowDataType
in classCliAbstractTable
- Returns:
- The data type of a row in this table.
-