diff gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultLayer.java @ 826:32d01e1ce2df

Added more JavaDocs gnv-artifacts/trunk@920 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 13 Apr 2010 12:32:24 +0000
parents 22c18083225e
children 05bf8534a35a
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultLayer.java	Tue Apr 13 08:50:08 2010 +0000
+++ b/gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultLayer.java	Tue Apr 13 12:32:24 2010 +0000
@@ -1,20 +1,31 @@
 package de.intevation.gnv.artifacts.services.requestobjects;
 
 /**
- * The  default implementation of <code>Layer</code>.
+ * The  default Implementation of <code>Layer</code>.
  *
  * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
  *
  */
 public class DefaultLayer implements Layer {
 
-
+    /**
+     * The id of the Layer
+     */
     private String id = null;
 
+    /**
+     * The name of the Layer
+     */
     private String name = null;
 
+    /**
+     * Flag which defines if the Layer is a GroupLayer
+     */
     private boolean groupLayer = false;
 
+    /**
+     * The ID of the Parentlayer or null if the Layer is a Rootlayer
+     */
     private String parentId = null;
 
     /**
@@ -32,31 +43,18 @@
         this.parentId = parentId;
     }
 
-
-    /**
-     * @return the id.
-     */
     public String getID() {
         return this.id;
     }
 
-    /**
-     * @return the name.
-     */
     public String getName() {
         return this.name;
     }
 
-    /**
-     * @return true, if this is a group layer.
-     */
     public boolean isGroupLayer() {
         return this.groupLayer;
     }
 
-    /**
-     * @return the parent id.
-     */
     public String parentID() {
         return this.parentId;
     }

http://dive4elements.wald.intevation.org