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 booleancompletedprotected java.lang.StringscriptName
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidtaskCancelled(Task task)Notification that the task was canceled.voidtaskCompleted(Task task)Notification that the task completed.
-
-
-
Method Detail
-
taskCompleted
public void taskCompleted(Task task)
Description copied from interface:TaskListenerNotification that the task completed.- Specified by:
taskCompletedin interfaceTaskListener- Parameters:
task- the task that was running and is now completed
-
taskCancelled
public void taskCancelled(Task task)
Description copied from interface:TaskListenerNotification that the task was canceled.- Specified by:
taskCancelledin interfaceTaskListener- Parameters:
task- the task that was running and was canceled
-
-