comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/MapService.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 89ade245ca7a
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 import java.util.Collection; 3 import java.util.Collection;
4 4
5 /** 5 /**
6 * This interface defines some basic methods to provide information about a map
7 * service.
8 *
6 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> 9 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
7 *
8 */ 10 */
9 public interface MapService { 11 public interface MapService {
10 12
11 13 /**
14 * Retrieves the id of a map service.
15 *
16 * @return the id of a map service.
17 */
12 String getID(); 18 String getID();
13 19
20
21 /**
22 * Retrieves the URL of a map service.
23 *
24 * @return the URL of a map service.
25 */
14 String getURL(); 26 String getURL();
15 27
28
29 /**
30 * Retrieves the type of a map service.
31 *
32 * @return the type of a map service.
33 */
16 String getType(); 34 String getType();
17 35
36 /**
37 * Retrieves the layers served by a map service.
38 *
39 * @return the layers served by a map service.
40 */
18 Collection<Layer> getLayer(); 41 Collection<Layer> getLayer();
19
20 } 42 }
43 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org