Package docking.widgets.tree.tasks
Class GTreeExpandAllTask
java.lang.Object
ghidra.util.worker.Job
ghidra.util.worker.PriorityJob
docking.widgets.tree.GTreeTask
docking.widgets.tree.tasks.GTreeExpandAllTask
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
expandNode
(GTreeNode parent, boolean force, TaskMonitor monitor) Expand the specified parent tree node.void
run
(TaskMonitor monitor) The method that gets called by the Worker when this job is selected to be run by the Worker.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 Details
-
GTreeExpandAllTask
-
-
Method Details
-
run
Description copied from class:Job
The method that gets called by the Worker when this job is selected to be run by the Worker. -
expandNode
protected void expandNode(GTreeNode parent, boolean force, TaskMonitor monitor) throws CancelledException Expand the specified parent tree node.- Parameters:
parent
- the tree node to be expandedforce
- if parent node has auto-expand disabled (seeGTreeNode.isAutoExpandPermitted()
) passing true will force such a node to expand, false will respect this restriction and not expand the parent node.monitor
- task monitor- Throws:
CancelledException
- if task cancelled
-