Mercurial > mxd2map
view src/java/de/intevation/mxd/writer/IWriter.java @ 42:395307e8b7ee
First MapScript Writer that generates valid mapfiles.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 15 Apr 2011 14:14:49 +0200 |
parents | 60ed2164035a |
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 :