01: package net.xoetrope.xml;
02:
03: import java.io.IOException;
04: import java.io.FileOutputStream;
05:
06: /**
07: * An interface used while writing XML
08: * <p>Copyright (c) Xoetrope Ltd., 1998-2004</p>
09: * $Revision: 1.5 $
10: */
11: public interface XmlWriter {
12: public void write(XmlElement xml, boolean prettyPrint, int indent)
13: throws IOException;
14:
15: public void setOutputStream(FileOutputStream fos);
16: }
|