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