Package docking.widgets.tree
Class GTreeTask
java.lang.Object
ghidra.util.worker.Job
ghidra.util.worker.PriorityJob
docking.widgets.tree.GTreeTask
- Direct Known Subclasses:
GTreeBulkTask
,GTreeClearSelectionTask
,GTreeClearTreeFilterTask
,GTreeCollapseAllTask
,GTreeExpandAllTask
,GTreeExpandNodeToDepthTask
,GTreeExpandPathsTask
,GTreeFilterTask
,GTreeLoadChildrenTask
,GTreeRestoreTreeStateTask
,GTreeSelectNodeByNameTask
,GTreeSelectPathsTask
,GTreeStartEditingTask
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
runOnSwingThread
(Runnable runnable) protected void
setTaskMonitor
(TaskMonitor monitor) protected TreePath
translatePath
(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
-
Field Details
-
tree
-
jTree
-
-
Constructor Details
-
GTreeTask
-
-
Method Details
-
setTaskMonitor
- Overrides:
setTaskMonitor
in classJob
-
runOnSwingThread
-
translatePath
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).- Parameters:
path
- the path to translatemonitor
- the monitor- Returns:
- the translated path
-