Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/describedata/MinMaxDescribeData.java @ 376:d8f3ef441bf2
merged gnv-artifacts/0.3
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:47 +0200 |
parents | e964a3d8f7bc |
children | a6a33ef35809 |
comparison
equal
deleted
inserted
replaced
293:6b0ef2324d02 | 376:d8f3ef441bf2 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.state.describedata; | |
5 | |
6 /** | |
7 * @author Tim Englich <tim.englich@intevation.de> | |
8 * | |
9 */ | |
10 public interface MinMaxDescribeData extends DescribeData { | |
11 | |
12 public Object getMinValue(); | |
13 | |
14 public Object getMaxValue(); | |
15 | |
16 public void setMinValue(Object minValue); | |
17 | |
18 public void setMaxValue(Object maxValue); | |
19 | |
20 public String getName(); | |
21 | |
22 public String getMinName(); | |
23 | |
24 public String getMaxName(); | |
25 | |
26 } |