Package ghidra.util.table.field
Class IsFunctionVarargsTableColumn
- java.lang.Object
-
- docking.widgets.table.AbstractDynamicTableColumn<ROW_TYPE,COLUMN_TYPE,Program>
-
- ghidra.util.table.field.AbstractProgramBasedDynamicTableColumn<ROW_TYPE,COLUMN_TYPE>
-
- ghidra.util.table.field.ProgramBasedDynamicTableColumnExtensionPoint<Function,java.lang.Boolean>
-
- ghidra.util.table.field.IsFunctionVarargsTableColumn
-
- All Implemented Interfaces:
DynamicTableColumn<Function,java.lang.Boolean,Program>,ExtensionPoint
public class IsFunctionVarargsTableColumn extends ProgramBasedDynamicTableColumnExtensionPoint<Function,java.lang.Boolean>
-
-
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 IsFunctionVarargsTableColumn()
-
Method Summary
All 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.java.lang.BooleangetValue(Function rowObject, Settings settings, Program data, 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, getColumnDisplayName, getColumnPreferredWidth, getColumnRenderer, getComparator, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
-
-
-
-
Method Detail
-
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<Function,java.lang.Boolean,Program>- Specified by:
getColumnNamein classAbstractDynamicTableColumn<Function,java.lang.Boolean,Program>- Returns:
- the field instance name.
-
getValue
public java.lang.Boolean getValue(Function rowObject, Settings settings, Program data, 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 interfaceDynamicTableColumn<Function,java.lang.Boolean,Program>- Specified by:
getValuein classAbstractDynamicTableColumn<Function,java.lang.Boolean,Program>- Parameters:
rowObject- the object associated with the row in the table.settings- field settingsdata- 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.
-
-