Class RefreshResultsTableLoader
java.lang.Object
ghidra.features.base.memsearch.gui.RefreshResultsTableLoader
- All Implemented Interfaces:
MemoryMatchTableLoader
Table loader that reloads the table with existing results after refreshing the byte values in
those results.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns true if the search/loading did not fully complete.void
dispose()
Cleans up resourcesReturns the first match found.boolean
Returns true if at least one match was found.void
loadResults
(Accumulator<MemoryMatch> accumulator, TaskMonitor monitor) Called by the table model to initiate searching and loading using the threaded table models threading infrastructure.
-
Constructor Details
-
RefreshResultsTableLoader
-
-
Method Details
-
loadResults
Description copied from interface:MemoryMatchTableLoader
Called by the table model to initiate searching and loading using the threaded table models threading infrastructure.- Specified by:
loadResults
in interfaceMemoryMatchTableLoader
- Parameters:
accumulator
- the accumulator to store results that will appear in the results tablemonitor
- the task monitor
-
dispose
public void dispose()Description copied from interface:MemoryMatchTableLoader
Cleans up resources- Specified by:
dispose
in interfaceMemoryMatchTableLoader
-
didTerminateEarly
public boolean didTerminateEarly()Description copied from interface:MemoryMatchTableLoader
Returns true if the search/loading did not fully complete. (Search limit reached, cancelled by user, etc.)- Specified by:
didTerminateEarly
in interfaceMemoryMatchTableLoader
- Returns:
- true if the search/loading did not fully complete
-
getFirstMatch
Description copied from interface:MemoryMatchTableLoader
Returns the first match found. Typically used to navigate the associated navigatable.- Specified by:
getFirstMatch
in interfaceMemoryMatchTableLoader
- Returns:
- the first match found
-
hasResults
public boolean hasResults()Description copied from interface:MemoryMatchTableLoader
Returns true if at least one match was found.- Specified by:
hasResults
in interfaceMemoryMatchTableLoader
- Returns:
- true if at least one match was found
-