Mercurial > dive4elements > gnv-client
diff gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultKeyValueDescribeData.java @ 82:5eb62df21f9a
Added Support for Vertical Profiles Marnet, STAUN, IMIS
gnv-artifacts/trunk@111 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 22 Sep 2009 13:20:30 +0000 |
parents | e33c61735a4e |
children | 7fb9441dd8af |
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultKeyValueDescribeData.java Mon Sep 21 11:50:47 2009 +0000 +++ b/gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultKeyValueDescribeData.java Tue Sep 22 13:20:30 2009 +0000 @@ -13,13 +13,13 @@ */ private static final long serialVersionUID = -924469415242703108L; - private int key; + private String key; private String value = null; private boolean selected = false; - public DefaultKeyValueDescribeData(int key, String value) { + public DefaultKeyValueDescribeData(String key, String value) { super(); this.key = key; this.value = value; @@ -28,7 +28,7 @@ /** * @see de.intevation.gnv.transition.describedata.KeyValueDescibeData#getKey() */ - public int getKey() { + public String getKey() { return this.key; }