Mercurial > mxd2map
comparison src/java/de/intevation/mxd/writer/IWriter.java @ 43:ef7ca23c4233
Added comments, done some code styling and removed typos.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 15 Apr 2011 15:44:54 +0200 |
parents | 60ed2164035a |
children | 7d4cf2db43f1 |
comparison
equal
deleted
inserted
replaced
42:395307e8b7ee | 43:ef7ca23c4233 |
---|---|
3 import java.io.IOException; | 3 import java.io.IOException; |
4 | 4 |
5 import org.w3c.dom.Document; | 5 import org.w3c.dom.Document; |
6 | 6 |
7 /** | 7 /** |
8 * The interface to the MXD-Reader. | 8 * The interface to the mapfile writer. |
9 * | 9 * |
10 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> | 10 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> |
11 */ | 11 */ |
12 public interface IWriter { | 12 public interface IWriter { |
13 /** | 13 /** |
14 * write the content. | 14 * Write the content. |
15 */ | 15 */ |
16 boolean write(Document doc) throws IOException; | 16 boolean write(Document doc) throws IOException; |
17 } | 17 } |
18 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : | 18 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |