Package ghidra.util.table.field
Class FunctionBodySizeTableColumn
- java.lang.Object
-
- docking.widgets.table.AbstractDynamicTableColumn<ROW_TYPE,COLUMN_TYPE,Program>
-
- ghidra.util.table.field.AbstractProgramBasedDynamicTableColumn<ROW_TYPE,COLUMN_TYPE>
-
- ghidra.util.table.field.ProgramBasedDynamicTableColumnExtensionPoint<Function,java.lang.Integer>
-
- ghidra.util.table.field.FunctionBodySizeTableColumn
-
- All Implemented Interfaces:
DynamicTableColumn<Function,java.lang.Integer,Program>
,ExtensionPoint
public class FunctionBodySizeTableColumn extends ProgramBasedDynamicTableColumnExtensionPoint<Function,java.lang.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 Constructor Description FunctionBodySizeTableColumn()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getColumnName()
Determines the unique column heading that may be used to identify a column instance.GColumnRenderer<java.lang.Integer>
getColumnRenderer()
Returns the optional cell renderer for this column; null if no renderer is used.java.lang.Integer
getValue(Function 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, getColumnDescription, getColumnDisplayName, getColumnPreferredWidth, getComparator, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
-
-
-
-
Method Detail
-
getColumnName
public java.lang.String getColumnName()
Description copied from interface:DynamicTableColumn
Determines 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:
getColumnName
in interfaceDynamicTableColumn<Function,java.lang.Integer,Program>
- Specified by:
getColumnName
in classAbstractDynamicTableColumn<Function,java.lang.Integer,Program>
- Returns:
- the field instance name.
-
getValue
public java.lang.Integer getValue(Function rowObject, Settings settings, Program program, ServiceProvider serviceProvider) throws java.lang.IllegalArgumentException
Description copied from interface:DynamicTableColumn
Creates 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:
getValue
in interfaceDynamicTableColumn<Function,java.lang.Integer,Program>
- Specified by:
getValue
in classAbstractDynamicTableColumn<Function,java.lang.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
- theServiceProvider
associated with the table.- Returns:
- the object for the model to display in the table cell.
- Throws:
java.lang.IllegalArgumentException
- if the rowObject is not one supported by this class.
-
getColumnRenderer
public GColumnRenderer<java.lang.Integer> getColumnRenderer()
Description copied from interface:DynamicTableColumn
Returns the optional cell renderer for this column; null if no renderer is used.This method allows columns to define custom rendering. The interface returned here ensures that the text used for filtering matches what the users sees (via the
GColumnRenderer.getFilterString(Object, Settings)
method).Note: some types should not make use of the aforementioned filter string. These types include the
Number
wrapper types,Date
andEnum
s. (This is because the filtering system works naturally with these types.) SeeGColumnRenderer
.- Specified by:
getColumnRenderer
in interfaceDynamicTableColumn<Function,java.lang.Integer,Program>
- Overrides:
getColumnRenderer
in classAbstractDynamicTableColumn<Function,java.lang.Integer,Program>
- Returns:
- the renderer
-
-