Package ghidra.util.table.field
Class LabelTableColumn
- 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<ProgramLocation,java.lang.String>
- 
- ghidra.util.table.field.LabelTableColumn
 
 
 
 
- 
- All Implemented Interfaces:
- DynamicTableColumn<ProgramLocation,java.lang.String,Program>,- ExtensionPoint,- ProgramBasedDynamicTableColumn<ProgramLocation,java.lang.String>,- ProgramLocationTableColumn<ProgramLocation,java.lang.String>
 
 public class LabelTableColumn extends ProgramLocationTableColumnExtensionPoint<ProgramLocation,java.lang.String> This table column displays the Label for either the program location or the address associated with a row in the table.
- 
- 
Field Summary- 
Fields inherited from class docking.widgets.table.AbstractDynamicTableColumnFLOATING_POINT_PRECISION_SETTING, FLOATING_POINT_SETTINGS_DEFINITIONS, INTEGER_RADIX_SETTING, INTEGER_SETTINGS_DEFINITIONS, INTEGER_SIGNEDNESS_MODE_SETTING, NO_SETTINGS_DEFINITIONS
 
- 
 - 
Constructor SummaryConstructors Constructor Description LabelTableColumn()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetColumnName()Determines the unique column heading that may be used to identify a column instance.intgetColumnPreferredWidth()Returns the preferred width for this column.ProgramLocationgetProgramLocation(ProgramLocation rowObject, Settings settings, Program program, ServiceProvider serviceProvider)Determines an appropriate program location associated with this field for the indicated row object.java.lang.StringgetValue(ProgramLocation 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.AbstractDynamicTableColumnequals, getColumnClass, getColumnDescription, getColumnDisplayName, getColumnRenderer, getComparator, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
 - 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface docking.widgets.table.DynamicTableColumngetColumnClass, getColumnDescription, getColumnDisplayName, getColumnRenderer, getComparator, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier
 
- 
 
- 
- 
- 
Method Detail- 
getProgramLocationpublic ProgramLocation getProgramLocation(ProgramLocation 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 settings
- program- the program associated with the table.
- serviceProvider- the plugin tool associated with the table.
- Returns:
- the address associated with the field.
 
 - 
getColumnNamepublic 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 interface- DynamicTableColumn<ProgramLocation,java.lang.String,Program>
- Specified by:
- getColumnNamein class- AbstractDynamicTableColumn<ProgramLocation,java.lang.String,Program>
- Returns:
- the field instance name.
 
 - 
getValuepublic java.lang.String getValue(ProgramLocation rowObject, Settings settings, Program program, ServiceProvider serviceProvider) throws java.lang.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 interface- DynamicTableColumn<ProgramLocation,java.lang.String,Program>
- Specified by:
- getValuein class- AbstractDynamicTableColumn<ProgramLocation,java.lang.String,Program>
- Parameters:
- rowObject- the object associated with the row in the table.
- settings- field settings
- program- the expected data object, as defined by the DATA_SOURCE type
- serviceProvider- the- ServiceProviderassociated 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.
 
 - 
getColumnPreferredWidthpublic 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 interface- DynamicTableColumn<ProgramLocation,java.lang.String,Program>
- Overrides:
- getColumnPreferredWidthin class- AbstractDynamicTableColumn<ProgramLocation,java.lang.String,Program>
- Returns:
- the preferred width for this column.
 
 
- 
 
-