Package ghidra.util.table.field
Interface ProgramLocationTableColumn<ROW_TYPE,COLUMN_TYPE>
-
- All Superinterfaces:
DynamicTableColumn<ROW_TYPE,COLUMN_TYPE,Program>
,ProgramBasedDynamicTableColumn<ROW_TYPE,COLUMN_TYPE>
- All Known Implementing Classes:
AbstractProgramLocationTableColumn
,AbstractReferenceBytesTableColumn
,AbstractReferencePreviewTableColumn
,AddressTableColumn
,AddressTableDataTableColumn
,AddressTableLengthTableColumn
,ByteCountProgramLocationBasedTableColumn
,BytesTableColumn
,CodeUnitTableColumn
,EOLCommentTableColumn
,FunctionCallingConventionTableColumn
,FunctionNameTableColumn
,FunctionParameterCountTableColumn
,FunctionSignatureTableColumn
,LabelTableColumn
,MappedProgramLocationTableColumn
,MemorySectionProgramLocationBasedTableColumn
,MemoryTypeProgramLocationBasedTableColumn
,PreviewTableColumn
,ProgramLocationTableColumnExtensionPoint
,ReferenceFromAddressTableColumn
,ReferenceFromBytesTableColumn
,ReferenceFromFunctionTableColumn
,ReferenceFromLabelTableColumn
,ReferenceFromPreviewTableColumn
,ReferenceToAddressTableColumn
,ReferenceToBytesTableColumn
,ReferenceToPreviewTableColumn
,ReferenceTypeTableColumn
public interface ProgramLocationTableColumn<ROW_TYPE,COLUMN_TYPE> extends ProgramBasedDynamicTableColumn<ROW_TYPE,COLUMN_TYPE>
An table column that knows how to generate ProgramLocation objects for a give row type.- See Also:
AbstractProgramBasedDynamicTableColumn
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProgramLocation
getProgramLocation(ROW_TYPE rowObject, Settings settings, Program program, ServiceProvider serviceProvider)
Determines an appropriate program location associated with this field for the indicated row object.-
Methods inherited from interface docking.widgets.table.DynamicTableColumn
getColumnClass, getColumnDescription, getColumnDisplayName, getColumnName, getColumnPreferredWidth, getColumnRenderer, getComparator, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, getValue
-
-
-
-
Method Detail
-
getProgramLocation
ProgramLocation getProgramLocation(ROW_TYPE rowObject, Settings settings, Program program, ServiceProvider serviceProvider)
Determines 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.
-
-