Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/exports/IdentifiableNumberAxis.java @ 4203:de795c13dcfb
Use static method from RiverInfoPanel to calculate the static width
Also add some logging to be able to debug further layout issues while resizing
the GaugePanel.
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Mon, 22 Oct 2012 15:25:04 +0200 |
parents | 2d5f2bc68cc6 |
children |
line wrap: on
line source
package de.intevation.flys.exports; import org.jfree.chart.axis.NumberAxis; public class IdentifiableNumberAxis extends NumberAxis { protected String key; protected IdentifiableNumberAxis(String key, String label) { super(label); this.key = key; } public String getId() { return key; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :