Mercurial > mxd2map
diff src/java/de/intevation/mxd/reader/MXDReader.java @ 181:0bde090506f9
Added comments.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Mon, 11 Jul 2011 14:28:38 +0200 |
parents | 2bf35f0babd0 |
children | df4e0946ef02 |
line wrap: on
line diff
--- a/src/java/de/intevation/mxd/reader/MXDReader.java Mon Jul 11 12:11:08 2011 +0200 +++ b/src/java/de/intevation/mxd/reader/MXDReader.java Mon Jul 11 14:28:38 2011 +0200 @@ -42,6 +42,9 @@ private IMap map; private int invalidLayerCount; + /** + * Default constructor. + */ public MXDReader() throws IOException { logger.debug("constructor()"); @@ -83,13 +86,17 @@ /** * Set the path and filename to the MXD-File. + * + * @param name The MXD filename. */ public void setFilename(String name) { logger.debug("setFilename()"); filename = name; } - + /** + * Get the map document from MXD. + */ private void openMapDocument() throws IOException { MapDocument m = new MapDocument();