Mercurial > mxd2map
diff src/java/de/intevation/mxd/reader/IClassReader.java @ 30:c34c450edb06
Introduced class reader.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 08 Apr 2011 17:58:37 +0200 |
parents | |
children | c51376f8e24c |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/java/de/intevation/mxd/reader/IClassReader.java Fri Apr 08 17:58:37 2011 +0200 @@ -0,0 +1,18 @@ +//package de.intevation.mxd.reader; + +import java.io.IOException; + +import org.w3c.dom.Node; +/** + * The interface to the class reader. + * + * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> + */ +public interface IClassReader{ + + boolean read() throws IOException; + void getClassDoc() throws IOException; + void setXMLNode(Node node); + +} +// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :