Mercurial > mxd2map
view src/java/de/intevation/mxd/reader/IReader.java @ 202:1e3a5019c4ed
* INSTALL.txt, LICENCE.txt, doku/source/LICENCE.txt,
doku/source/conf.py, doku/source/functionality.txt,
doku/source/index.txt, doku/source/restrictions.txt: Added some
formatting, a section about the setup of environment vars needed
for runtime, added some more features.
author | Stephan Holl <stephan.holl@intevation.de> |
---|---|
date | Thu, 21 Jul 2011 09:38:44 +0200 |
parents | 9f74f4d36822 |
children | df4e0946ef02 |
line wrap: on
line source
package de.intevation.mxd.reader; import java.io.IOException; import org.w3c.dom.Document; /** * The interface to the MXD-Reader. * * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> */ public interface IReader { /** * Initializes the reader component. */ boolean init() throws IOException; /** * Method to perform actions at the of reader usage. */ boolean shutdown() throws IOException; /** * Set the filename. */ void setFilename(String name); /** * Read the content. */ boolean read() throws Exception; /** * Request DOM Document containing the map data. */ Document getMapDocument(); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :