Class ProjectDataDeleteTask
- java.lang.Object
-
- ghidra.util.task.Task
-
- ghidra.framework.main.projectdata.actions.ProjectDataDeleteTask
-
- All Implemented Interfaces:
MonitoredRunnable
public class ProjectDataDeleteTask extends Task
Taskthat handles deletingfilesandfoldersfrom the project.This task will iterate all the files and folders specified by the user to weed out common problem issues (read-only files, checked-out files), ask the user to confirm, and then perform the actual delete operations.
This task will show a summary dialog if there were multiple files involved or any errors encountered.
-
-
Field Summary
-
Fields inherited from class ghidra.util.task.Task
taskMonitor, waitForTaskCompleted
-
-
Constructor Summary
Constructors Constructor Description ProjectDataDeleteTask(java.util.List<DomainFile> files, java.util.List<DomainFolder> folders, java.awt.Component parentComponent)Creates a new task to delete the specified files and folders.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrun(TaskMonitor monitor)This is the method that will be called to do the work-
Methods inherited from class ghidra.util.task.Task
addTaskListener, canCancel, cancel, getStatusTextAlignment, getTaskTitle, hasProgress, isModal, monitoredRun, notifyTaskListeners, setHasProgress
-
-
-
-
Constructor Detail
-
ProjectDataDeleteTask
public ProjectDataDeleteTask(java.util.List<DomainFile> files, java.util.List<DomainFolder> folders, java.awt.Component parentComponent)
Creates a new task to delete the specified files and folders.
-
-
Method Detail
-
run
public void run(TaskMonitor monitor)
Description copied from class:TaskThis is the method that will be called to do the workNote: The run(TaskMonitor) method should not make any calls directly on Swing components, as these calls are not thread safe. Place Swing calls in a Runnable, then call
SystemUtilities.runSwingLater(Runnable)orSystemUtilities.runSwingNow(Runnable)to schedule the Runnable inside of the AWT Event Thread.
-
-