01: package com.wutka.jox;
02:
03: /** An interface used by the output utility class so it can write
04: * XML to either an output stream or a writer without caring.
05: *
06: * This interface is implemented by both JOXOutputStream and
07: * JOXWriter.
08: *
09: * @author Mark Wutka
10: * @version 1.0 05/08/2000
11: * @version 1.1 05/09/2000
12: */
13:
14: interface JOXOutput {
15: public void writeString(String str) throws java.io.IOException;
16: }
|