01: package jimm.datavision;
02:
03: import jimm.util.XMLWriter;
04:
05: /**
06: * Identifies objects that implement the <code>writeXML</code> method.
07: *
08: * @author Jim Menard, <a href="mailto:jimm@io.com">jimm@io.com</a>
09: */
10: public interface Writeable {
11:
12: /**
13: * Writes this object as an XML tag.
14: *
15: * @param out a writer that knows how to write XML
16: */
17: public void writeXML(XMLWriter out);
18:
19: }
|