Package ghidra.util.table.field
Class FunctionParameterCountTableColumn
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<Address,Integer,Program>
docking.widgets.table.DynamicTableColumnExtensionPoint<Address,Integer,Program>
ghidra.util.table.field.ProgramLocationTableColumnExtensionPoint<Address,Integer>
ghidra.util.table.field.FunctionParameterCountTableColumn
- All Implemented Interfaces:
DynamicTableColumn<Address,,Integer, Program> ExtensionPoint,ProgramBasedDynamicTableColumn<Address,,Integer> ProgramLocationTableColumn<Address,Integer>
public class FunctionParameterCountTableColumn
extends ProgramLocationTableColumnExtensionPoint<Address,Integer>
-
Field Summary
Fields inherited from class docking.widgets.table.AbstractDynamicTableColumn
FLOATING_POINT_PRECISION_SETTING, FLOATING_POINT_SETTINGS_DEFINITIONS, INTEGER_RADIX_SETTING, INTEGER_SETTINGS_DEFINITIONS, INTEGER_SIGNEDNESS_MODE_SETTING, NO_SETTINGS_DEFINITIONS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a description of this column.Determines the unique column heading that may be used to identify a column instance.getProgramLocation(Address rowObject, Settings settings, Program program, ServiceProvider serviceProvider) Determines an appropriate program location associated with this field for the indicated row object.getValue(Address rowObject, Settings settings, Program program, ServiceProvider serviceProvider) Creates an object that is appropriate for this field (table column) and for the object that is associated with this row of the table.Methods inherited from class docking.widgets.table.AbstractDynamicTableColumn
equals, getColumnClass, getColumnDisplayName, getColumnPreferredWidth, getColumnRenderer, getComparator, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface docking.widgets.table.DynamicTableColumn
getColumnClass, getColumnDisplayName, getColumnPreferredWidth, getColumnRenderer, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier
-
Constructor Details
-
FunctionParameterCountTableColumn
public FunctionParameterCountTableColumn()
-
-
Method Details
-
getColumnDescription
Description copied from interface:DynamicTableColumnReturns a description of this column. This may be used as a tooltip for the column header- Specified by:
getColumnDescriptionin interfaceDynamicTableColumn<Address,Integer, Program> - Overrides:
getColumnDescriptionin classAbstractDynamicTableColumn<Address,Integer, Program> - Returns:
- a description of this column. This may be used as a tooltip for the column header.
-
getColumnName
Description copied from interface:DynamicTableColumnDetermines the unique column heading that may be used to identify a column instance. This name must be non-changing and is used to save/restore state information.- Specified by:
getColumnNamein interfaceDynamicTableColumn<Address,Integer, Program> - Specified by:
getColumnNamein classAbstractDynamicTableColumn<Address,Integer, Program> - Returns:
- the field instance name.
-
getProgramLocation
public ProgramLocation getProgramLocation(Address rowObject, Settings settings, Program program, ServiceProvider serviceProvider) Description copied from interface:ProgramLocationTableColumnDetermines an appropriate program location associated with this field for the indicated row object. The most probable use is for navigating from the field.- Parameters:
rowObject- the object associated with the table row.settings- field settingsprogram- the program associated with the table.serviceProvider- the plugin tool associated with the table.- Returns:
- the address associated with the field.
-
getValue
public Integer getValue(Address rowObject, Settings settings, Program program, ServiceProvider serviceProvider) throws IllegalArgumentException Description copied from interface:DynamicTableColumnCreates an object that is appropriate for this field (table column) and for the object that is associated with this row of the table.- Specified by:
getValuein interfaceDynamicTableColumn<Address,Integer, Program> - Specified by:
getValuein classAbstractDynamicTableColumn<Address,Integer, Program> - Parameters:
rowObject- the object associated with the row in the table.settings- field settingsprogram- the expected data object, as defined by the DATA_SOURCE typeserviceProvider- theServiceProviderassociated with the table.- Returns:
- the object for the model to display in the table cell.
- Throws:
IllegalArgumentException- if the rowObject is not one supported by this class.
-