Mercurial > mxd2map
comparison 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 |
comparison
equal
deleted
inserted
replaced
40:a1bc7220efe7 | 41:60ed2164035a |
---|---|
1 package de.intevation.mxd.writer; | |
2 | |
3 import java.io.IOException; | |
4 | |
5 import org.w3c.dom.Document; | |
6 | |
7 /** | |
8 * The interface to the MXD-Reader. | |
9 * | |
10 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> | |
11 */ | |
12 public interface IWriter { | |
13 /** | |
14 * write the content. | |
15 */ | |
16 boolean write(Document doc) throws IOException; | |
17 } | |
18 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |