diff gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/DefaultLayer.java @ 959:0846c9c4abdd

Add more Javadocs gnv/trunk@1103 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 18 May 2010 10:00:27 +0000
parents 89ade245ca7a
children 28a0628b11b0
line wrap: on
line diff
--- a/gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/DefaultLayer.java	Tue May 18 09:51:41 2010 +0000
+++ b/gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/DefaultLayer.java	Tue May 18 10:00:27 2010 +0000
@@ -8,16 +8,34 @@
 public class DefaultLayer implements Layer {
 
 
+    /**
+     * The id of this layer.
+     */
     private String id = null;
 
+    /**
+     * The name of this layer.
+     */
     private String name = null;
 
+    /**
+     * Flag which defines if this layer is an grouplayer.
+     */
     private boolean groupLayer = false;
 
+    /**
+     * The id of the parent layer or null if this layer is an rootlayer.
+     */
     private String parentId = null;
 
     /**
      * Constructor
+     * 
+     * @param id the id of this layer
+     * @param name the name of this layer
+     * @param groupLayer flag which defines if this layer is an grouplayer
+     * @param parentId the id of the parent layer or null if this layer is an 
+     *                 rootlayer
      */
     public DefaultLayer(String id,String name,
                         boolean groupLayer,String parentId) {

http://dive4elements.wald.intevation.org