01: package net.xoetrope.debug;
02:
03: /**
04: * An interface used to help monitor debug log messages
05: * <p> Copyright (c) Xoetrope Ltd., 2002-2004</p>
06: * <p> $Revision: 1.3 $</p>
07: * <p> License: see License.txt</p>
08: */
09: public interface XLogListener {
10: public void addMessage(final String line);
11:
12: public void addError(final String line);
13: }
|