Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/wms/LayerInfo.java @ 747:a5e860f17a52
Added an new State wich will handle the Display of Coordinatevalues and fetch given Inputparameters from the Presettings and copy them to the InputValues.
gnv-artifacts/trunk@787 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 16 Mar 2010 13:02:56 +0000 |
parents | 452fad121560 |
children | 1d23ab77fb72 |
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"; public static final String LAYER_TITLE = "title"; private String name; private String title; 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 setTitle(String title) { this.title = title; } public String getTitle() { return title; } 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; } }