Package docking.widgets.tree
Class GTreeTask
- java.lang.Object
-
- ghidra.util.worker.Job
-
- ghidra.util.worker.PriorityJob
-
- docking.widgets.tree.GTreeTask
-
- Direct Known Subclasses:
AbstractSelectPathsTask,GTreeBulkTask,GTreeClearSelectionTask,GTreeClearTreeFilterTask,GTreeCollapseAllTask,GTreeExpandAllTask,GTreeExpandNodeToDepthTask,GTreeExpandPathsTask,GTreeFilterTask,GTreeLoadChildrenTask,GTreeRestoreTreeStateTask,GTreeSelectNodeByNameTask,GTreeStartEditingTask,SetRootNodeTask
public abstract class GTreeTask extends PriorityJob
-
-
Method Summary
All Methods Instance Methods Concrete Methods Change Modifier and Type Method Description voidrunOnSwingThread(java.lang.Runnable runnable)NEW protected voidsetTaskMonitor(TaskMonitor monitor)NEW protected javax.swing.tree.TreePathtranslatePath(javax.swing.tree.TreePath path, TaskMonitor monitor)This method allows us to take a TreePath from a previous tree and apply that path to a new tree (or a tree that has been reloaded with new nodes).-
Methods inherited from class ghidra.util.worker.PriorityJob
getID, getPriority
-
Methods inherited from class ghidra.util.worker.Job
cancel, getError, hasError, isCancelled, isCompleted, run, setCompleted, setError
-
-
-
-
Method Detail
-
setTaskMonitor NEW
protected void setTaskMonitor(TaskMonitor monitor)
- Overrides:
setTaskMonitorin classJob
-
runOnSwingThread
public void runOnSwingThread(java.lang.Runnable runnable)
-
translatePath NEW
protected javax.swing.tree.TreePath translatePath(javax.swing.tree.TreePath path, TaskMonitor monitor)This method allows us to take a TreePath from a previous tree and apply that path to a new tree (or a tree that has been reloaded with new nodes). This method is required due to the fact that JTree allows you to set any path values, valid or not, and will return those path values on later calls to getSelectedPaths(). So, to handle that 'feature' of the JTree, we need to translate the given path to the equivalent path in the current tree (this code may not be needed in all uses of this task, but it protects us from the aforementioned case).- Throws:
CancelledException
-
-