summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/share
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-02-02 12:57:18 +0000
committerRüdiger Timm <rt@openoffice.org>2005-02-02 12:57:18 +0000
commit93812b7f6e3127ec4b4125edb32ad99b71281c9b (patch)
tree72b0a4fe661abc09cc6b0bd1a7b9797e124dbc7b /qadevOOo/runner/share
parent545e0d19a8fac076edf6b05d30f779ac6b21290d (diff)
INTEGRATION: CWS imprec01 (1.1.156); FILE MERGED
2005/01/10 13:03:11 cn 1.1.156.1: new methods 'getWatcher' and 'setWatcher' implemented
Diffstat (limited to 'qadevOOo/runner/share')
-rw-r--r--qadevOOo/runner/share/LogWriter.java21
1 files changed, 19 insertions, 2 deletions
diff --git a/qadevOOo/runner/share/LogWriter.java b/qadevOOo/runner/share/LogWriter.java
index b2115a5f9f60..746606cf83bc 100644
--- a/qadevOOo/runner/share/LogWriter.java
+++ b/qadevOOo/runner/share/LogWriter.java
@@ -2,9 +2,9 @@
*
* $RCSfile: LogWriter.java,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change:$Date: 2003-01-27 16:27:48 $
+ * last change:$Date: 2005-02-02 13:57:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,4 +82,21 @@ public interface LogWriter {
public boolean summary(share.DescEntry entry);
+
+ /**
+ * Returns the <CODE>Watcher</CODE> which is associated with this logger
+ * @see share.Watcher
+ * @return the associated <CODE>Watcher</CODE>
+ */
+ public Object getWatcher();
+
+ /**
+ * Set a <CODE>Watcher</CODE> to the <CODE>LogWriter</CODE>
+ * This is usefull if a test starts a new office instance by itself. In this cases
+ * the <CODE>LogWritter</CODE> could retrigger the <CODE>Watcher</CODE>
+ * @see share.Watcher
+ * @param watcher the new <CODE>Watcher</CODE>
+ */
+ public void setWatcher(Object watcher);
+
}