diff gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultMapService.java @ 792:9b9bf42b7928

Added and repaired JavaDoc in artifacts package. gnv-artifacts/trunk@874 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 31 Mar 2010 10:52:34 +0000
parents c4156275c1e1
children feae2f9d6c6f
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultMapService.java	Wed Mar 31 09:30:34 2010 +0000
+++ b/gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultMapService.java	Wed Mar 31 10:52:34 2010 +0000
@@ -3,6 +3,8 @@
 import java.util.Collection;
 
 /**
+ * The default implementation of <code>MapService</code>.
+ * 
  * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
  *
  */
@@ -10,15 +12,18 @@
 
     private String id = null;
 
-
-
     private Collection<Layer> layer = null;
 
     private String type = null;
 
     private String url = null;
+    
     /**
      * Constructor
+     * @param id The id of this service.
+     * @param type The type of  this service.
+     * @param layer The layers available in this service.
+     * @param url The url used to call this service.
      */
     public DefaultMapService(String id, Collection<Layer> layer,
                              String type, String url) {
@@ -30,31 +35,32 @@
     }
 
     /**
-     * @see de.intevation.gnv.artifactdatabase.objects.map.MapService#getID()
+     * @return
      */
     public String getID() {
         return this.id;
     }
 
     /**
-     * @see de.intevation.gnv.artifactdatabase.objects.map.MapService#getLayer()
+     * @return
      */
     public Collection<Layer> getLayer() {
         return this.layer;
     }
 
     /**
-     * @see de.intevation.gnv.artifactdatabase.objects.map.MapService#getType()
+     * @return
      */
     public String getType() {
         return this.type;
     }
 
     /**
-     * @see de.intevation.gnv.artifactdatabase.objects.map.MapService#getURL()
+     * @return
      */
     public String getURL() {
         return this.url;
     }
 
 }
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :
\ No newline at end of file

http://dive4elements.wald.intevation.org