Package ghidra.util.table.field
Class AddressTableColumn
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<Address,AddressBasedLocation,Program>
docking.widgets.table.DynamicTableColumnExtensionPoint<Address,AddressBasedLocation,Program>
ghidra.util.table.field.ProgramLocationTableColumnExtensionPoint<Address,AddressBasedLocation>
ghidra.util.table.field.AddressTableColumn
- All Implemented Interfaces:
DynamicTableColumn<Address,
,AddressBasedLocation, Program> ExtensionPoint
,ProgramBasedDynamicTableColumn<Address,
,AddressBasedLocation> ProgramLocationTableColumn<Address,
AddressBasedLocation>
public class AddressTableColumn
extends ProgramLocationTableColumnExtensionPoint<Address,AddressBasedLocation>
This table field displays Address 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
-
Method Summary
Modifier and TypeMethodDescriptiongetColumnDisplayName
(Settings settings) Determines the column heading that will be displayed.Determines the unique column heading that may be used to identify a column instance.int
Returns the preferred width for this column.getProgramLocation
(Address rowObject, Settings settings, Program program, ServiceProvider serviceProvider) Determines an appropriate program location associated with this field for the indicated row object.getValue
(Address 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, getColumnRenderer, getComparator, getComparator, getHeaderRenderer, 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, getColumnRenderer, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier
-
Field Details
-
NAME
- See Also:
-
-
Constructor Details
-
AddressTableColumn
public AddressTableColumn()
-
-
Method Details
-
getColumnDisplayName
Description copied from interface:DynamicTableColumn
Determines the column heading that will be displayed.- Specified by:
getColumnDisplayName
in interfaceDynamicTableColumn<Address,
AddressBasedLocation, Program> - Overrides:
getColumnDisplayName
in classAbstractDynamicTableColumn<Address,
AddressBasedLocation, Program> - Parameters:
settings
- the settings- Returns:
- the field name to display as the column heading.
-
getColumnName
Description copied from interface:DynamicTableColumn
Determines 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:
getColumnName
in interfaceDynamicTableColumn<Address,
AddressBasedLocation, Program> - Specified by:
getColumnName
in classAbstractDynamicTableColumn<Address,
AddressBasedLocation, Program> - Returns:
- the field instance name.
-
getValue
public AddressBasedLocation getValue(Address rowObject, Settings settings, Program pgm, ServiceProvider serviceProvider) throws IllegalArgumentException Description copied from interface:DynamicTableColumn
Creates 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:
getValue
in interfaceDynamicTableColumn<Address,
AddressBasedLocation, Program> - Specified by:
getValue
in classAbstractDynamicTableColumn<Address,
AddressBasedLocation, 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
- theServiceProvider
associated 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(Address rowObject, Settings settings, Program program, ServiceProvider serviceProvider) Description copied from interface:ProgramLocationTableColumn
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.
-
getColumnPreferredWidth
public int getColumnPreferredWidth()Description copied from interface:DynamicTableColumn
Returns the preferred width for this column. Column should either return a valid positive preferred size or -1.- Specified by:
getColumnPreferredWidth
in interfaceDynamicTableColumn<Address,
AddressBasedLocation, Program> - Overrides:
getColumnPreferredWidth
in classAbstractDynamicTableColumn<Address,
AddressBasedLocation, Program> - Returns:
- the preferred width for this column.
-