Class MemoryMatchTableModel.MatchBytesColumn
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<MemoryMatch,String,Program>
docking.widgets.table.DynamicTableColumnExtensionPoint<MemoryMatch,String,Program>
ghidra.features.base.memsearch.gui.MemoryMatchTableModel.MatchBytesColumn
- All Implemented Interfaces:
DynamicTableColumn<MemoryMatch,,String, Program> ExtensionPoint
- Enclosing class:
MemoryMatchTableModel
public class MemoryMatchTableModel.MatchBytesColumn
extends DynamicTableColumnExtensionPoint<MemoryMatch,String,Program>
-
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 TypeMethodDescriptionDetermines the unique column heading that may be used to identify a column instance.intReturns the preferred width for this column.Returns the optional cell renderer for this column; null if no renderer is used.getValue(MemoryMatch match, Settings settings, Program pgm, ServiceProvider service) 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, getComparator, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
-
Constructor Details
-
MatchBytesColumn
public MatchBytesColumn()
-
-
Method Details
-
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<MemoryMatch,String, Program> - Specified by:
getColumnNamein classAbstractDynamicTableColumn<MemoryMatch,String, Program> - Returns:
- the field instance name.
-
getValue
public String getValue(MemoryMatch match, Settings settings, Program pgm, ServiceProvider service) 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<MemoryMatch,String, Program> - Specified by:
getValuein classAbstractDynamicTableColumn<MemoryMatch,String, Program> - Parameters:
match- the object associated with the row in the table.settings- field settingspgm- the expected data object, as defined by the DATA_SOURCE typeservice- 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.
-
getColumnPreferredWidth
public int getColumnPreferredWidth()Description copied from interface:DynamicTableColumnReturns the preferred width for this column. Column should either return a valid positive preferred size or -1.- Specified by:
getColumnPreferredWidthin interfaceDynamicTableColumn<MemoryMatch,String, Program> - Overrides:
getColumnPreferredWidthin classAbstractDynamicTableColumn<MemoryMatch,String, Program> - Returns:
- the preferred width for this column.
-
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<MemoryMatch,String, Program> - Overrides:
getColumnRendererin classAbstractDynamicTableColumn<MemoryMatch,String, Program> - Returns:
- the renderer
-