Package ghidra.app.tablechooser
Class ColumnDisplayDynamicTableColumnAdapter<COLUMN_TYPE>
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<AddressableRowObject,COLUMN_TYPE,Program>
ghidra.util.table.field.AbstractProgramBasedDynamicTableColumn<AddressableRowObject,COLUMN_TYPE>
ghidra.app.tablechooser.ColumnDisplayDynamicTableColumnAdapter<COLUMN_TYPE>
- All Implemented Interfaces:
DynamicTableColumn<AddressableRowObject,
,COLUMN_TYPE, Program> Comparator<AddressableRowObject>
public class ColumnDisplayDynamicTableColumnAdapter<COLUMN_TYPE>
extends AbstractProgramBasedDynamicTableColumn<AddressableRowObject,COLUMN_TYPE>
implements Comparator<AddressableRowObject>
-
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
-
Method Summary
Modifier and TypeMethodDescriptionint
Determines the class of object that is associated with this field (column).Determines the unique column heading that may be used to identify a column instance.Returns the optional cell renderer for this column; null if no renderer is used.getValue
(AddressableRowObject 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, getColumnDescription, getColumnDisplayName, getColumnPreferredWidth, getComparator, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Comparator
equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
-
Constructor Details
-
ColumnDisplayDynamicTableColumnAdapter
-
-
Method Details
-
getColumnClass
Description copied from interface:DynamicTableColumn
Determines the class of object that is associated with this field (column).- Specified by:
getColumnClass
in interfaceDynamicTableColumn<AddressableRowObject,
COLUMN_TYPE, Program> - Overrides:
getColumnClass
in classAbstractDynamicTableColumn<AddressableRowObject,
COLUMN_TYPE, Program> - Returns:
- the column class
-
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<AddressableRowObject,
COLUMN_TYPE, Program> - Specified by:
getColumnName
in classAbstractDynamicTableColumn<AddressableRowObject,
COLUMN_TYPE, Program> - Returns:
- the field instance name.
-
getValue
public COLUMN_TYPE getValue(AddressableRowObject rowObject, Settings settings, Program program, ServiceProvider serviceProvider) throws 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<AddressableRowObject,
COLUMN_TYPE, Program> - Specified by:
getValue
in classAbstractDynamicTableColumn<AddressableRowObject,
COLUMN_TYPE, 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:
IllegalArgumentException
- if the rowObject is not one supported by this class.
-
compare
- Specified by:
compare
in interfaceComparator<COLUMN_TYPE>
-
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<AddressableRowObject,
COLUMN_TYPE, Program> - Overrides:
getColumnRenderer
in classAbstractDynamicTableColumn<AddressableRowObject,
COLUMN_TYPE, Program> - Returns:
- the renderer
-