Mercurial > mxd2map
comparison src/java/de/intevation/mxd/reader/ILayerReader.java @ 31:40c0b4e5f91a
Added utility class to store map attributes.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Mon, 11 Apr 2011 16:04:03 +0200 |
parents | 3e24fffdf2bb |
children | c51376f8e24c |
comparison
equal
deleted
inserted
replaced
30:c34c450edb06 | 31:40c0b4e5f91a |
---|---|
1 //package de.intevation.mxd.reader; | 1 //package de.intevation.mxd.reader; |
2 | 2 |
3 import java.io.IOException; | 3 import java.io.IOException; |
4 | 4 |
5 import org.w3c.dom.Element; | |
5 /** | 6 /** |
6 * The interface to the layer reader. | 7 * The interface to the layer reader. |
7 * | 8 * |
8 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> | 9 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> |
9 */ | 10 */ |
10 public interface ILayerReader{ | 11 public interface ILayerReader{ |
11 | 12 |
12 public boolean read() throws IOException; | 13 void setUtil(MapToXMLUtils util); |
13 public void getLayer() throws IOException; | 14 Element read() throws IOException; |
14 | 15 |
15 } | 16 } |
16 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : | 17 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |