Package ghidra.util.table.field
Class AbstractReferencePreviewTableColumn
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData,Program>
  
docking.widgets.table.DynamicTableColumnExtensionPoint<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData,Program>
  
ghidra.util.table.field.ProgramLocationTableColumnExtensionPoint<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData>
 
ghidra.util.table.field.AbstractReferencePreviewTableColumn
- All Implemented Interfaces:
 DynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,,PreviewTableCellData, Program> ExtensionPoint,ProgramBasedDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,,PreviewTableCellData> ProgramLocationTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData> 
- Direct Known Subclasses:
 ReferenceFromPreviewTableColumn,ReferenceToPreviewTableColumn
public abstract class AbstractReferencePreviewTableColumn
extends ProgramLocationTableColumnExtensionPoint<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData> 
This table field displays the preview of the code unit at the ToAddress 
 for the reference or possible reference address pair
 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.Returns the optional cell renderer for this column; null if no renderer is used.intgetMaxLines(Settings settings) Gets the maximum number of text display lines needed for any given cell with the specified settings.getProgramLocation(ghidra.app.plugin.core.analysis.ReferenceAddressPair rowObject, Settings settings, Program program, ServiceProvider serviceProvider) Determines an appropriate program location associated with this field for the indicated row object.Returns a list of settings definitions for this field.getValue(ghidra.app.plugin.core.analysis.ReferenceAddressPair 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, getColumnName, getColumnPreferredWidth, getComparator, getComparator, getHeaderRenderer, getSupportedRowType, getUniqueIdentifier, hashCode, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface docking.widgets.table.DynamicTableColumn
getColumnClass, getColumnDescription, getColumnName, getColumnPreferredWidth, getComparator, getHeaderRenderer, getSupportedRowType, getUniqueIdentifier 
- 
Constructor Details
- 
AbstractReferencePreviewTableColumn
public AbstractReferencePreviewTableColumn() 
 - 
 - 
Method Details
- 
getValue
public PreviewTableCellData getValue(ghidra.app.plugin.core.analysis.ReferenceAddressPair 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<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Specified by:
 getValuein classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, 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.
 - 
getProgramLocation
public ProgramLocation getProgramLocation(ghidra.app.plugin.core.analysis.ReferenceAddressPair rowObject, Settings settings, Program program, ServiceProvider serviceProvider) Description copied from interface:ProgramLocationTableColumnDetermines an appropriate program location associated with this field for the indicated row object. The most probable use is for navigating from the field.- Parameters:
 rowObject- the object associated with the table row.settings- field settingsprogram- the program associated with the table.serviceProvider- the plugin tool associated with the table.- Returns:
 - the address associated with the field.
 
 - 
getColumnDisplayName
Description copied from interface:DynamicTableColumnDetermines the column heading that will be displayed.- Specified by:
 getColumnDisplayNamein interfaceDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Overrides:
 getColumnDisplayNamein classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Parameters:
 settings- the settings- Returns:
 - the field name to display as the column heading.
 
 - 
getMaxLines
Description copied from interface:DynamicTableColumnGets the maximum number of text display lines needed for any given cell with the specified settings.- Specified by:
 getMaxLinesin interfaceDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Overrides:
 getMaxLinesin classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Parameters:
 settings- field settings- Returns:
 - maximum number of lines needed
 
 - 
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<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Overrides:
 getColumnRendererin classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Returns:
 - the renderer
 
 - 
getSettingsDefinitions
Description copied from interface:DynamicTableColumnReturns a list of settings definitions for this field.- Specified by:
 getSettingsDefinitionsin interfaceDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Overrides:
 getSettingsDefinitionsin classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,PreviewTableCellData, Program> - Returns:
 - list of settings definitions for this field.
 
 
 -