diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-05-19 12:22:14 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-05-19 12:22:14 +0000 |
commit | ed96f098d0b8165f554525f073cef5816038db71 (patch) | |
tree | 3c13446bebb7e07007e4411929c04409b08ede19 | |
parent | 0af76ed39a663a40e039b3b6d8ba7b28fc9a21ae (diff) |
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
-rw-r--r-- | wizards/com/sun/star/wizards/web/status/TaskListener.java | 31 |
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); + +} |