Mercurial > mxd2map
diff src/java/de/intevation/mxd/writer/IWriter.java @ 41:60ed2164035a
Introduced MapScript writer.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Thu, 14 Apr 2011 11:31:29 +0200 |
parents | |
children | ef7ca23c4233 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/java/de/intevation/mxd/writer/IWriter.java Thu Apr 14 11:31:29 2011 +0200 @@ -0,0 +1,18 @@ +package de.intevation.mxd.writer; + +import java.io.IOException; + +import org.w3c.dom.Document; + +/** + * The interface to the MXD-Reader. + * + * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> + */ +public interface IWriter { + /** + * write the content. + */ + boolean write(Document doc) throws IOException; +} +// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :