Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/wms/LayerInfo.java @ 636:22cc12b1622c
Take parent states only to describe static user interface part - not the current state itself.
gnv-artifacts/trunk@718 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 01 Mar 2010 14:15:33 +0000 |
parents | 89aca25642d6 |
children | 452fad121560 |
line wrap: on
line source
package de.intevation.gnv.wms; /** * @author Ingo Weinzierl (ingo.weinzierl@intevation.de) */ public class LayerInfo { public static final String LAYER = "layer"; public static final String LAYER_MODEL = "model"; public static final String LAYER_NAME = "name"; public static final String LAYER_TYPE = "type"; public static final String LAYER_DATA = "data"; public static final String LAYER_STATUS = "status"; private String name; private String type; private String data; private String status; private String model; public LayerInfo() { } public void setData(String data) { this.data = data; } public String getData() { return data; } public void setName(String name) { this.name = name; } public String getName() { return name; } public void setModel(String model) { this.model = model; } public String getModel() { return model; } public void setType(String type) { this.type = type; } public String getType() { return type; } public void setStatus(String status) { this.status = status; } public String getStatus() { return status; } public boolean isEmpty() { if (name == null && data == null && type == null && status == null) return true; return false; } public boolean isBroken() { if (name == null || data == null || type == null) return true; return false; } }