Class DomainFileSizeProjectDataColumn
java.lang.Object
docking.widgets.table.AbstractDynamicTableColumn<DomainFileInfo,Long,ProjectData>
ghidra.framework.main.datatable.ProjectDataColumn<Long>
ghidra.util.table.projectdata.column.DomainFileSizeProjectDataColumn
- All Implemented Interfaces:
DynamicTableColumn<DomainFileInfo,
,Long, ProjectData> ExtensionPoint
,Comparable<ProjectDataColumn<?>>
-
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 TypeMethodDescriptionDetermines the unique column heading that may be used to identify a column instance.int
Returns the preferred width for this column.Returns the optional cell renderer for this column; null if no renderer is used.int
getValue
(DomainFileInfo info, Settings settings, ProjectData data, ServiceProvider services) Creates an object that is appropriate for this field (table column) and for the object that is associated with this row of the table.boolean
Methods inherited from class ghidra.framework.main.datatable.ProjectDataColumn
compareTo
Methods inherited from class docking.widgets.table.AbstractDynamicTableColumn
equals, getColumnClass, getColumnDescription, getColumnDisplayName, getComparator, getComparator, getHeaderRenderer, getMaxLines, getSettingsDefinitions, getSupportedRowType, getUniqueIdentifier, hashCode, toString
-
Constructor Details
-
DomainFileSizeProjectDataColumn
public DomainFileSizeProjectDataColumn()
-
-
Method Details
-
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<DomainFileInfo,
Long, ProjectData> - Specified by:
getColumnName
in classAbstractDynamicTableColumn<DomainFileInfo,
Long, ProjectData> - Returns:
- the field instance name.
-
getValue
public Long getValue(DomainFileInfo info, Settings settings, ProjectData data, ServiceProvider services) 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<DomainFileInfo,
Long, ProjectData> - Specified by:
getValue
in classAbstractDynamicTableColumn<DomainFileInfo,
Long, ProjectData> - Parameters:
info
- the object associated with the row in the table.settings
- field settingsdata
- the expected data object, as defined by the DATA_SOURCE typeservices
- 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.
-
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<DomainFileInfo,
Long, ProjectData> - Overrides:
getColumnPreferredWidth
in classAbstractDynamicTableColumn<DomainFileInfo,
Long, ProjectData> - Returns:
- the preferred width for this column.
-
isDefaultColumn
public boolean isDefaultColumn()- Specified by:
isDefaultColumn
in classProjectDataColumn<Long>
-
getPriority
public int getPriority()- Specified by:
getPriority
in classProjectDataColumn<Long>
-
getColumnRenderer
Description copied from interface:DynamicTableColumn
Returns the optional cell renderer for this column; null if no renderer is used.This method allows columns to define custom rendering. The interface returned here ensures that the text used for filtering matches what the users sees (via the
GColumnRenderer.getFilterString(Object, Settings)
method).Note: some types should not make use of the aforementioned filter string. These types include the
Number
wrapper types,Date
andEnum
s. (This is because the filtering system works naturally with these types.) SeeGColumnRenderer
.- Specified by:
getColumnRenderer
in interfaceDynamicTableColumn<DomainFileInfo,
Long, ProjectData> - Overrides:
getColumnRenderer
in classAbstractDynamicTableColumn<DomainFileInfo,
Long, ProjectData> - Returns:
- the renderer
-