summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/web/status/TaskListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/web/status/TaskListener.java')
-rw-r--r--wizards/com/sun/star/wizards/web/status/TaskListener.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/web/status/TaskListener.java b/wizards/com/sun/star/wizards/web/status/TaskListener.java
new file mode 100644
index 000000000000..c702233fd061
--- /dev/null
+++ b/wizards/com/sun/star/wizards/web/status/TaskListener.java
@@ -0,0 +1,31 @@
+/*
+ * Created on 04.11.2003
+ *
+ * To change the template for this generated file go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+package com.sun.star.wizards.web.status;
+
+import java.util.EventListener;
+
+/**
+ * @author rpiterman
+ *
+ * To change the template for this generated type comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public interface TaskListener extends EventListener {
+
+ public void taskStarted(TaskEvent te);
+
+ public void taskFinished(TaskEvent te);
+
+ /**
+ * is called when the status of the task has advanced.
+ * @param te
+ */
+ public void taskStatusChanged(TaskEvent te);
+
+ public void subtaskNameChanged(TaskEvent te);
+
+}