Mercurial > mxd2map
view 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 source
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 :