comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/IntegerRangeData.java @ 1554:ae25566ce6f6

Implemented the createOld() method in RangePanel. flys-client/trunk@3793 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 27 Jan 2012 12:47:25 +0000
parents 487c3ff7e838
children c408074c6409
comparison
equal deleted inserted replaced
1553:9ad19e31d149 1554:ae25566ce6f6
1 package de.intevation.flys.client.shared.model; 1 package de.intevation.flys.client.shared.model;
2 2
3 3
4 public class IntegerRangeData implements Data { 4 /**
5 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
6 */
7 public class IntegerRangeData implements RangeData {
5 8
6 protected String label; 9 protected String label;
7 protected String description; 10 protected String description;
8 11
9 protected int lower; 12 protected int lower;
76 public DataItem getDefault() { 79 public DataItem getDefault() {
77 return null; 80 return null;
78 } 81 }
79 82
80 83
81 public int getLower() { 84 public Object getLower() {
82 return lower; 85 return lower;
83 } 86 }
84 87
85 88
86 public int getUpper() { 89 public Object getUpper() {
87 return upper; 90 return upper;
88 } 91 }
89 } 92 }
90 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 93 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org