Mercurial > mxd2map
comparison src/java/de/intevation/mxd/reader/ISymbolReader.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 | |
5 import org.w3c.dom.Element; | |
4 | 6 |
5 /** | 7 /** |
6 * The interface to the symbol reader. | 8 * The interface to the symbol reader. |
7 * | 9 * |
8 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> | 10 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> |
9 */ | 11 */ |
10 public interface ISymbolReader{ | 12 public interface ISymbolReader{ |
11 | 13 |
12 public boolean read() throws IOException; | 14 Element read() throws IOException; |
13 public void getSymbol() throws IOException; | 15 |
16 void setParent(Element parent); | |
17 void setUtil(MapToXMLUtils util); | |
14 | 18 |
15 } | 19 } |
16 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : | 20 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |