Mercurial > mxd2map
view src/java/de/intevation/mxd/reader/ISymbolReader.java @ 30:c34c450edb06
Introduced class reader.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 08 Apr 2011 17:58:37 +0200 |
parents | 3e24fffdf2bb |
children | 40c0b4e5f91a |
line wrap: on
line source
//package de.intevation.mxd.reader; import java.io.IOException; /** * The interface to the symbol reader. * * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> */ public interface ISymbolReader{ public boolean read() throws IOException; public void getSymbol() throws IOException; } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :