Package ghidra.framework.main.datatable
Class ProjectDataTableModel
java.lang.Object
javax.swing.table.AbstractTableModel
docking.widgets.table.AbstractGTableModel<DomainFileInfo>
docking.widgets.table.AbstractSortedTableModel<DomainFileInfo>
docking.widgets.table.GDynamicColumnTableModel<DomainFileInfo,ProjectData>
docking.widgets.table.threaded.ThreadedTableModel<DomainFileInfo,ProjectData>
ghidra.framework.main.datatable.ProjectDataTableModel
- All Implemented Interfaces:
ConfigurableColumnTableModel
,DynamicColumnTableModel<DomainFileInfo>
,RowObjectFilterModel<DomainFileInfo>
,RowObjectTableModel<DomainFileInfo>
,SelectionStorage<DomainFileInfo>
,SortedTableModel
,VariableColumnTableModel
,Serializable
,EventListener
,ChangeListener
,TableModel
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class docking.widgets.table.threaded.ThreadedTableModel
ThreadedTableModel.IncrementalLoadJobListener
-
Field Summary
Fields inherited from class docking.widgets.table.threaded.ThreadedTableModel
allData, filteredData
Fields inherited from class docking.widgets.table.GDynamicColumnTableModel
columnSettings, serviceProvider, tableColumns
Fields inherited from class docking.widgets.table.AbstractSortedTableModel
hasEverSorted
Fields inherited from class docking.widgets.table.AbstractGTableModel
isDisposed, WIDTH_UNDEFINED
Fields inherited from class javax.swing.table.AbstractTableModel
listenerList
Fields inherited from interface docking.widgets.table.RowObjectFilterModel
SUB_FILTERING_DISABLED_PROPERTY
Fields inherited from interface docking.widgets.table.SortedTableModel
ASCENDING_ORDER, DESCENDING_ORDER
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected TableColumnDescriptor
<DomainFileInfo> protected void
doLoad
(Accumulator<DomainFileInfo> accumulator, TaskMonitor monitor) The basic method that all children must implement.Returns the table's context for the data.boolean
isCellEditable
(int rowIndex, int columnIndex) void
refresh()
Invoke this method when the underlying data has changed, but a reload is not required.void
setEditing
(boolean on) void
setProjectData
(ProjectData projectData) void
setValueAt
(Object aValue, int rowIndex, int columnIndex) Methods inherited from class docking.widgets.table.threaded.ThreadedTableModel
addInitialLoadListener, addInitialLoadListener, addObject, addThreadedTableModelListener, backgroundWorkCancelled, cancelAllUpdates, clearData, createAccumulator, createIncrementalLoadJob, createSortComparator, dispose, doFilter, fireTableChanged, getAddRemoveStrategy, getAllData, getModelData, getModelIndex, getModelRow, getName, getRowCount, getRowObjects, getTableFilter, getUnfilteredData, getUnfilteredIndexForRowObject, getUnfilteredRowCount, getUnfilteredRowObjectForIndex, getValueAt, getViewIndex, getViewRow, hasFilter, initializeSorting, isBusy, isFiltered, isLoadIncrementally, reFilter, reload, removeObject, removeThreadedTableModelListener, reSort, setIncrementalTaskMonitor, setModelState, setTableFilter, sort, startInitialLoad, updateNow, updateObject
Methods inherited from class docking.widgets.table.GDynamicColumnTableModel
addTableColumn, addTableColumn, addTableColumns, addTableColumns, createSortComparatorForColumn, disposeDynamicColumnData, getColumn, getColumnClass, getColumnCount, getColumnDescription, getColumnDisplayName, getColumnIndex, getColumnIndex, getColumnName, getColumnSettings, getColumnSettingsDefinitions, getColumnValueForRow, getDefaultColumnCount, getHeaderRenderer, getMaxLines, getPreferredColumnWidth, getRenderer, getTableColumnDescriptor, getUniqueIdentifier, isDefaultColumn, isSortable, isVisibleByDefault, loadDiscoveredTableColumns, reloadColumns, removeTableColumn, removeTableColumns, setAllColumnSettings, stateChanged
Methods inherited from class docking.widgets.table.AbstractSortedTableModel
addSortListener, cleanupTableSortState, createSortingContext, getIndexForRowObject, getIndexForRowObject, getPendingSortState, getPrimarySortColumnIndex, getRowIndex, getRowObject, getTableSortState, isSorted, isSortPending, notifyModelSorted, setDefaultTableSortState, setTableSortState, sortCompleted
Methods inherited from class docking.widgets.table.AbstractGTableModel
getLastSelectedObjects, isDisposed, setLastSelectedObjects
Methods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, removeTableModelListener
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface docking.widgets.table.RowObjectTableModel
fireTableDataChanged, getColumnValueForRow, getRowIndex, getRowObject
Methods inherited from interface javax.swing.table.TableModel
addTableModelListener, getColumnClass, getColumnCount, getColumnName, removeTableModelListener
-
Constructor Details
-
ProjectDataTableModel
-
-
Method Details
-
doLoad
protected void doLoad(Accumulator<DomainFileInfo> accumulator, TaskMonitor monitor) throws CancelledException Description copied from class:ThreadedTableModel
The basic method that all children must implement. This is where children load their data.- Specified by:
doLoad
in classThreadedTableModel<DomainFileInfo,
ProjectData> - Parameters:
accumulator
- the datastructure into which you should incrementally place you table row datamonitor
- the task monitor to check for cancellations and to update progress- Throws:
CancelledException
- if the task monitor has been cancelled and a call is made tomonitor.checkCancelled();
.
-
createTableColumnDescriptor
- Specified by:
createTableColumnDescriptor
in classGDynamicColumnTableModel<DomainFileInfo,
ProjectData>
-
getDataSource
Description copied from class:GDynamicColumnTableModel
Returns the table's context for the data.- Specified by:
getDataSource
in classGDynamicColumnTableModel<DomainFileInfo,
ProjectData> - Returns:
- the table's context for the data.
-
refresh
public void refresh()Description copied from class:AbstractGTableModel
Invoke this method when the underlying data has changed, but a reload is not required.- Overrides:
refresh
in classAbstractGTableModel<DomainFileInfo>
-
setProjectData
-
isCellEditable
public boolean isCellEditable(int rowIndex, int columnIndex) - Specified by:
isCellEditable
in interfaceTableModel
- Overrides:
isCellEditable
in classAbstractTableModel
-
setValueAt
- Specified by:
setValueAt
in interfaceTableModel
- Overrides:
setValueAt
in classAbstractTableModel
-
setEditing
public void setEditing(boolean on)
-