Mercurial > mxd2map
comparison src/java/de/intevation/mxd/ISymbolReader.java @ 25:cbd67b1100d8
Initial commit of the first prototype.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 08 Apr 2011 11:47:59 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
24:c0060abb7457 | 25:cbd67b1100d8 |
---|---|
1 //package de.intevation.mxd.symbol; | |
2 | |
3 import java.io.IOException; | |
4 | |
5 /** | |
6 * The interface to the symbol reader. | |
7 * | |
8 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> | |
9 */ | |
10 public interface ISymbolReader{ | |
11 | |
12 public boolean read() throws IOException; | |
13 public void getSymbol() throws IOException; | |
14 | |
15 } | |
16 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |