Mercurial > dive4elements > gnv-client
diff gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultKeyValueDescribeData.java @ 171:7fb9441dd8af
Format Code to max 80 Chars per Row and Cleanup
gnv-artifacts/trunk@208 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Fri, 09 Oct 2009 07:54:48 +0000 |
parents | 5eb62df21f9a |
children |
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultKeyValueDescribeData.java Fri Oct 09 07:49:47 2009 +0000 +++ b/gnv-artifacts/src/main/java/de/intevation/gnv/transition/describedata/DefaultKeyValueDescribeData.java Fri Oct 09 07:54:48 2009 +0000 @@ -2,9 +2,10 @@ * */ package de.intevation.gnv.transition.describedata; + /** * @author Tim Englich <tim.englich@intevation.de> - * + * */ public class DefaultKeyValueDescribeData implements KeyValueDescibeData { @@ -14,11 +15,11 @@ private static final long serialVersionUID = -924469415242703108L; private String key; - + private String value = null; - + private boolean selected = false; - + public DefaultKeyValueDescribeData(String key, String value) { super(); this.key = key; @@ -29,7 +30,7 @@ * @see de.intevation.gnv.transition.describedata.KeyValueDescibeData#getKey() */ public String getKey() { - return this.key; + return this.key; } /**