Mercurial > mxd2map
comparison 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 |
comparison
equal
deleted
inserted
replaced
29:77cfa8092611 | 30:c34c450edb06 |
---|---|
1 //package de.intevation.mxd.reader; | |
2 | |
3 import java.io.IOException; | |
4 | |
5 import org.w3c.dom.Node; | |
6 /** | |
7 * The interface to the class reader. | |
8 * | |
9 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> | |
10 */ | |
11 public interface IClassReader{ | |
12 | |
13 boolean read() throws IOException; | |
14 void getClassDoc() throws IOException; | |
15 void setXMLNode(Node node); | |
16 | |
17 } | |
18 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |