Package ghidra.util.table.field
Class ReferenceFromLabelTableColumn
- java.lang.Object
-
- docking.widgets.table.AbstractDynamicTableColumn<ROW_TYPE,COLUMN_TYPE,DATA_SOURCE>
-
- docking.widgets.table.DynamicTableColumnExtensionPoint<ROW_TYPE,COLUMN_TYPE,Program>
-
- ghidra.util.table.field.ProgramLocationTableColumnExtensionPoint<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String>
-
- ghidra.util.table.field.ReferenceFromLabelTableColumn
-
- All Implemented Interfaces:
DynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String,Program>,ExtensionPoint,ProgramBasedDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String>,ProgramLocationTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String>
public class ReferenceFromLabelTableColumn extends ProgramLocationTableColumnExtensionPoint<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String>
This table field displays the primary symbol at the FromAddress 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 Constructor Description ReferenceFromLabelTableColumn()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetColumnDisplayName(Settings settings)Determines the column heading that will be displayed.java.lang.StringgetColumnName()Determines the unique column heading that may be used to identify a column instance.ProgramLocationgetProgramLocation(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.java.lang.StringgetValue(ghidra.app.plugin.core.analysis.ReferenceAddressPair 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, getColumnClass, getColumnDescription, getColumnPreferredWidth, getColumnRenderer, getComparator, 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 docking.widgets.table.DynamicTableColumn
getColumnClass, getColumnDescription, getColumnPreferredWidth, getColumnRenderer, getComparator, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier
-
-
-
-
Method Detail
-
getColumnDisplayName
public java.lang.String getColumnDisplayName(Settings settings)
Description copied from interface:DynamicTableColumnDetermines the column heading that will be displayed.- Specified by:
getColumnDisplayNamein interfaceDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String,Program>- Overrides:
getColumnDisplayNamein classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String,Program>- Parameters:
settings- the settings- Returns:
- the field name to display as the column heading.
-
getColumnName
public java.lang.String 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<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String,Program>- Specified by:
getColumnNamein classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String,Program>- Returns:
- the field instance name.
-
getValue
public java.lang.String getValue(ghidra.app.plugin.core.analysis.ReferenceAddressPair rowObject, Settings settings, Program program, ServiceProvider serviceProvider) throws java.lang.IllegalArgumentExceptionDescription 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,java.lang.String,Program>- Specified by:
getValuein classAbstractDynamicTableColumn<ghidra.app.plugin.core.analysis.ReferenceAddressPair,java.lang.String,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- theServiceProviderassociated with the table.- Returns:
- the object for the model to display in the table cell.
- Throws:
java.lang.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.
-
-