view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/map/Layer.java @ 984:cfc7bd35ee0b

Set the map to the extent which was sent by the rest-server gnv/trunk@1167 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 07 Jun 2010 14:52:45 +0000
parents 89ade245ca7a
children 28a0628b11b0
line wrap: on
line source
package de.intevation.gnv.artifactdatabase.objects.map;

/**
 * This interface defines some basic methods providing information about a map
 * layer.
 *
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 */
public interface Layer {

    /**
     * Retrieves the name of a layer.
     *
     * @return the name of a layer.
     */
    String getName();

    /**
     * Retrieves the id of a layer.
     *
     * @return the id of a layer.
     */
    String getID();

    /**
     * Retrieves true, if this layer is a group layer - otherwise false.
     *
     * @return true, if this layer is a group layer - otherwise false.
     */
    boolean isGroupLayer();

    /**
     * Retrieves the id of the parent layer.
     *
     * @return the id of the parent layer.
     */
    String parentID();
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org