Package ghidra.test
Class ScriptTaskListener
- java.lang.Object
-
- ghidra.test.ScriptTaskListener
-
- All Implemented Interfaces:
TaskListener
public class ScriptTaskListener extends java.lang.Object implements TaskListener
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
completed
protected java.lang.String
scriptName
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
taskCancelled(Task task)
Notification that the task was canceled.void
taskCompleted(Task task)
Notification that the task completed.
-
-
-
Method Detail
-
taskCompleted
public void taskCompleted(Task task)
Description copied from interface:TaskListener
Notification that the task completed.- Specified by:
taskCompleted
in interfaceTaskListener
- Parameters:
task
- the task that was running and is now completed
-
taskCancelled
public void taskCancelled(Task task)
Description copied from interface:TaskListener
Notification that the task was canceled.- Specified by:
taskCancelled
in interfaceTaskListener
- Parameters:
task
- the task that was running and was canceled
-
-