comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/DefaultMapService.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 cfc7bd35ee0b
comparison
equal deleted inserted replaced
958:d5d4dbda17cc 959:0846c9c4abdd
7 * 7 *
8 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 8 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
9 */ 9 */
10 public class DefaultMapService implements MapService { 10 public class DefaultMapService implements MapService {
11 11
12 /**
13 * The id of this mapservice.
14 */
12 private String id = null; 15 private String id = null;
13 16
17 /**
18 * The layer which are provided by this mapservice.
19 */
14 private Collection<Layer> layer = null; 20 private Collection<Layer> layer = null;
15 21
22 /**
23 * The type of this mapservice.
24 */
16 private String type = null; 25 private String type = null;
17 26
27 /**
28 * The URl of this mapservice.
29 */
18 private String url = null; 30 private String url = null;
19 31
20 /** 32 /**
21 * Constructor 33 * Constructor
34 *
35 * @param id the id of this mapservice
36 * @param layer the layer which are provided by this mapservice
37 * @param type the type of this mapservice
38 * @param url the URl of this mapservice
22 */ 39 */
23 public DefaultMapService(String id, Collection<Layer> layer, 40 public DefaultMapService(String id, Collection<Layer> layer,
24 String type, String url) { 41 String type, String url) {
25 super(); 42 super();
26 this.id = id; 43 this.id = id;

http://dive4elements.wald.intevation.org