From ed96f098d0b8165f554525f073cef5816038db71 Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Wed, 19 May 2004 12:22:14 +0000 Subject: INTEGRATION: CWS qwizards1 (1.1.2); FILE ADDED 2004/03/12 16:17:02 rpiterman 1.1.2.2: documentation and small implementation-fixes 2003/11/05 14:12:56 rpiterman 1.1.2.1: An interface which defines a Listener who responses to changes of Task Status --- .../sun/star/wizards/web/status/TaskListener.java | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 wizards/com/sun/star/wizards/web/status/TaskListener.java 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); + +} -- cgit v1.2.1