comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/Layer.java @ 690:254f062e334b

Added JavaDoc. gnv/trunk@908 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 12 Apr 2010 16:45:16 +0000
parents 57fa8019fbdc
children af22fa5567a6
comparison
equal deleted inserted replaced
689:8487581dfe3b 690:254f062e334b
1 package de.intevation.gnv.artifactdatabase.objects.map; 1 package de.intevation.gnv.artifactdatabase.objects.map;
2 2
3 /** 3 /**
4 * This interface defines some basic methods providing information about a map
5 * layer.
6 *
4 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 7 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
5 *
6 */ 8 */
7 public interface Layer { 9 public interface Layer {
8 10
11 /**
12 * Retrieves the name of a layer.
13 *
14 * @return the name of a layer.
15 */
9 String getName(); 16 String getName();
17
18 /**
19 * Retrieves the id of a layer.
20 *
21 * @return the id of a layer.
22 */
10 String getID(); 23 String getID();
24
25 /**
26 * Retrieves true, if this layer is a group layer - otherwise false.
27 *
28 * @return true, if this layer is a group layer - otherwise false.
29 */
11 boolean isGroupLayer(); 30 boolean isGroupLayer();
31
32 /**
33 * Retrieves the id of the parent layer.
34 *
35 * @return the id of the parent layer.
36 */
12 String parentID(); 37 String parentID();
13
14 } 38 }
39 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org