comparison 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
comparison
equal deleted inserted replaced
958:d5d4dbda17cc 959:0846c9c4abdd
6 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 6 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
7 */ 7 */
8 public class DefaultLayer implements Layer { 8 public class DefaultLayer implements Layer {
9 9
10 10
11 /**
12 * The id of this layer.
13 */
11 private String id = null; 14 private String id = null;
12 15
16 /**
17 * The name of this layer.
18 */
13 private String name = null; 19 private String name = null;
14 20
21 /**
22 * Flag which defines if this layer is an grouplayer.
23 */
15 private boolean groupLayer = false; 24 private boolean groupLayer = false;
16 25
26 /**
27 * The id of the parent layer or null if this layer is an rootlayer.
28 */
17 private String parentId = null; 29 private String parentId = null;
18 30
19 /** 31 /**
20 * Constructor 32 * Constructor
33 *
34 * @param id the id of this layer
35 * @param name the name of this layer
36 * @param groupLayer flag which defines if this layer is an grouplayer
37 * @param parentId the id of the parent layer or null if this layer is an
38 * rootlayer
21 */ 39 */
22 public DefaultLayer(String id,String name, 40 public DefaultLayer(String id,String name,
23 boolean groupLayer,String parentId) { 41 boolean groupLayer,String parentId) {
24 this.id = id; 42 this.id = id;
25 this.name = name; 43 this.name = name;

http://dive4elements.wald.intevation.org