Package ghidra.app.plugin.debug.dbtable
Class LongColumnAdapter
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<DBRecord,Object,Object>
docking.widgets.table.AbstractDynamicTableColumnStub<DBRecord,Object>
ghidra.app.plugin.debug.dbtable.LongColumnAdapter
- All Implemented Interfaces:
DynamicTableColumn<DBRecord,Object, Object>
-
Field Summary
FieldsFields 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 -
Method Summary
Modifier and TypeMethodDescriptionprotected StringgetByteString(byte b) 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(DBRecord rowObject, Settings settings, ServiceProvider serviceProvider) Methods inherited from class docking.widgets.table.AbstractDynamicTableColumnStub
getValueMethods inherited from class docking.widgets.table.AbstractDynamicTableColumn
equals, getColumnDescription, getColumnDisplayName, getColumnPreferredWidth, getComparator, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
-
Field Details
-
longRenderer
-
column
protected int column
-
-
Method Details
-
getColumnRenderer
Description copied from interface:DynamicTableColumnReturns 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
Numberwrapper types,DateandEnums. (This is because the filtering system works naturally with these types.) SeeGColumnRenderer.- Specified by:
getColumnRendererin interfaceDynamicTableColumn<DBRecord,Object, Object> - Overrides:
getColumnRendererin classAbstractDynamicTableColumn<DBRecord,Object, Object> - Returns:
- the renderer
-
getValue
public Object getValue(DBRecord rowObject, Settings settings, ServiceProvider serviceProvider) throws IllegalArgumentException - Specified by:
getValuein classAbstractDynamicTableColumnStub<DBRecord,Object> - Throws:
IllegalArgumentException
-
getColumnClass
Description copied from interface:DynamicTableColumnDetermines the class of object that is associated with this field (column).- Specified by:
getColumnClassin interfaceDynamicTableColumn<DBRecord,Object, Object> - Overrides:
getColumnClassin classAbstractDynamicTableColumn<DBRecord,Object, Object> - Returns:
- the column class
-
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<DBRecord,Object, Object> - Specified by:
getColumnNamein classAbstractDynamicTableColumn<DBRecord,Object, Object> - Returns:
- the field instance name.
-
getByteString
-