Package ghidra.util.table.field
Class FunctionPurgeTableColumn
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<Function,String,Program>
ghidra.util.table.field.AbstractProgramBasedDynamicTableColumn<Function,String>
ghidra.util.table.field.ProgramBasedDynamicTableColumnExtensionPoint<Function,String>
ghidra.util.table.field.FunctionPurgeTableColumn
- All Implemented Interfaces:
DynamicTableColumn<Function,,String, Program> ExtensionPoint
public class FunctionPurgeTableColumn
extends ProgramBasedDynamicTableColumnExtensionPoint<Function,String>
This table field displays the Function Purge for either the program location or the address
associated with a row in the table.
-
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 TypeMethodDescriptiongetColumnDisplayName(Settings settings) Determines the column heading that will be displayed.Determines the unique column heading that may be used to identify a column instance.getValue(Function rowObject, Settings settings, Program pgm, 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, getColumnDescription, getColumnPreferredWidth, getColumnRenderer, getComparator, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
-
Constructor Details
-
FunctionPurgeTableColumn
public FunctionPurgeTableColumn()
-
-
Method Details
-
getColumnDisplayName
Description copied from interface:DynamicTableColumnDetermines the column heading that will be displayed.- Specified by:
getColumnDisplayNamein interfaceDynamicTableColumn<Function,String, Program> - Overrides:
getColumnDisplayNamein classAbstractDynamicTableColumn<Function,String, Program> - Parameters:
settings- the settings- Returns:
- the field name to display as the column heading.
-
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<Function,String, Program> - Specified by:
getColumnNamein classAbstractDynamicTableColumn<Function,String, Program> - Returns:
- the field instance name.
-
getValue
public String getValue(Function rowObject, Settings settings, Program pgm, 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<Function,String, Program> - Specified by:
getValuein classAbstractDynamicTableColumn<Function,String, Program> - Parameters:
rowObject- the object associated with the row in the table.settings- field settingspgm- 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.
-