Package docking.widgets.tree.tasks
Class GTreeBulkTask
- java.lang.Object
-
- ghidra.util.worker.Job
-
- ghidra.util.worker.PriorityJob
-
- docking.widgets.tree.GTreeTask
-
- docking.widgets.tree.tasks.GTreeBulkTask
-
public abstract class GTreeBulkTask extends GTreeTask
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
GTreeBulkTask(GTree tree)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
run(TaskMonitor monitor)
The method that gets called by the Worker when this job is selected to be run by the Worker.abstract void
runBulk(TaskMonitor monitor)
Perform bulk operations here.-
Methods inherited from class docking.widgets.tree.GTreeTask
runOnSwingThread, setTaskMonitor, translatePath
-
Methods inherited from class ghidra.util.worker.PriorityJob
getID, getPriority
-
Methods inherited from class ghidra.util.worker.Job
cancel, getError, hasError, isCancelled, isCompleted, setCompleted, setError
-
-
-
-
Constructor Detail
-
GTreeBulkTask
protected GTreeBulkTask(GTree tree)
-
-
Method Detail
-
run
public final void run(TaskMonitor monitor) throws CancelledException
Description copied from class:Job
The method that gets called by the Worker when this job is selected to be run by the Worker.- Specified by:
run
in classJob
- Throws:
CancelledException
-
runBulk
public abstract void runBulk(TaskMonitor monitor) throws CancelledException
Perform bulk operations here.- Parameters:
monitor
- the monitor used to report progress and check for cancelled- Throws:
CancelledException
- if the user cancelled andTaskMonitor.checkCanceled()
gets called
-
-