diff gnv/src/main/java/de/intevation/gnv/action/mapviewer/parser/ExternalCallParser.java @ 953:4b64b4d1f0cf

Add more Javadocs gnv/trunk@1097 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 18 May 2010 07:32:45 +0000
parents 57fa8019fbdc
children 28a0628b11b0
line wrap: on
line diff
--- a/gnv/src/main/java/de/intevation/gnv/action/mapviewer/parser/ExternalCallParser.java	Mon May 17 14:21:19 2010 +0000
+++ b/gnv/src/main/java/de/intevation/gnv/action/mapviewer/parser/ExternalCallParser.java	Tue May 18 07:32:45 2010 +0000
@@ -1,20 +1,37 @@
 package de.intevation.gnv.action.mapviewer.parser;
 
+import java.util.Collection;
+
 import de.intevation.gnv.artifactdatabase.objects.map.MapService;
 
-import java.util.Collection;
-
 /**
+ * Interfacedefinition for an XMl-parser of the MV-GNV-Interface requestdocument.
  * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
  */
 public interface ExternalCallParser {
 
 
+    /**
+     * Returns the geometry which was parsed from the XML-document.
+     * @return the geometry.
+     */
     String getGeometry();
 
+    /**
+     * Returns the srid which was parsed from the XML-document.
+     * @return the srid.
+     */
     String getSRS();
 
+    /**
+     * Returns the mapservices which was parsed from the XML-document.
+     * @return the mapservices.
+     */
     Collection<MapService> getMapServices();
 
+    /**
+     * Does the parsing work.
+     * @throws ExternalCallParserException
+     */
     void parse() throws ExternalCallParserException;
 }

http://dive4elements.wald.intevation.org