Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/jfree/Bounds.java @ 3938:c0cab28ba1ea
merged flys-artifacts
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:15:03 +0200 |
parents | 7b14d00bca8a |
children |
comparison
equal
deleted
inserted
replaced
3865:436eec3be6ff | 3938:c0cab28ba1ea |
---|---|
1 package de.intevation.flys.jfree; | |
2 | |
3 import java.io.Serializable; | |
4 | |
5 import org.jfree.chart.axis.ValueAxis; | |
6 | |
7 | |
8 /** | |
9 * Somewhat better Ranges. | |
10 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> | |
11 */ | |
12 public interface Bounds extends Serializable { | |
13 | |
14 Number getLower(); | |
15 | |
16 Number getUpper(); | |
17 | |
18 void applyBounds(ValueAxis axis); | |
19 | |
20 void applyBounds(ValueAxis axis, int percent); | |
21 | |
22 Bounds combine(Bounds bounds); | |
23 } | |
24 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |