diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-02-02 12:59:13 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-02-02 12:59:13 +0000 |
commit | 7005f0494f7ae4058d12fedddc810f1e6f1c1f86 (patch) | |
tree | 001838ed72325196423535f8ed56f9f7d2fc7948 /qadevOOo/runner/stats | |
parent | 29d4edb7e23e3d610394463f9c037f886fa7cfa8 (diff) |
INTEGRATION: CWS imprec01 (1.1.156); FILE MERGED
2005/01/10 13:00:47 cn 1.1.156.1: new method 'getWatcher' and 'setWatcher' implemented
Diffstat (limited to 'qadevOOo/runner/stats')
-rw-r--r-- | qadevOOo/runner/stats/SimpleFileOutProducer.java | 11 | ||||
-rw-r--r-- | qadevOOo/runner/stats/SimpleOutProducer.java | 11 |
2 files changed, 18 insertions, 4 deletions
diff --git a/qadevOOo/runner/stats/SimpleFileOutProducer.java b/qadevOOo/runner/stats/SimpleFileOutProducer.java index ef61335f9f00..c0c535175e4c 100644 --- a/qadevOOo/runner/stats/SimpleFileOutProducer.java +++ b/qadevOOo/runner/stats/SimpleFileOutProducer.java @@ -2,9 +2,9 @@ * * $RCSfile: SimpleFileOutProducer.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-02-05 16:39:48 $ + * last change:$Date: 2005-02-02 13:58:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -138,4 +138,11 @@ public class SimpleFileOutProducer implements LogWriter { return true; } + public Object getWatcher() { + return null; + } + + public void setWatcher(Object watcher) { + } + } diff --git a/qadevOOo/runner/stats/SimpleOutProducer.java b/qadevOOo/runner/stats/SimpleOutProducer.java index bbe911725c3c..ba6785009589 100644 --- a/qadevOOo/runner/stats/SimpleOutProducer.java +++ b/qadevOOo/runner/stats/SimpleOutProducer.java @@ -2,9 +2,9 @@ * * $RCSfile: SimpleOutProducer.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-01-27 16:26:47 $ + * last change:$Date: 2005-02-02 13:59:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -101,4 +101,11 @@ public class SimpleOutProducer implements LogWriter { return true; } + public Object getWatcher() { + return null; + } + + public void setWatcher(Object watcher) { + } + } |