Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/jfree/FLYSAnnotation.java @ 1678:03fbf1b30e72
Removed code duplication of guessWaterIncreasing()
flys-artifacts/trunk@2895 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 05 Oct 2011 13:16:44 +0000 |
parents | dd9dfe1e48fa |
children | 69929c471646 |
line wrap: on
line source
package de.intevation.flys.jfree; import java.util.List; import de.intevation.flys.model.Annotation; public class FLYSAnnotation { protected List<Annotation> annotations; protected String label; public FLYSAnnotation(String label, List<Annotation> annotations) { this.label = label; this.annotations = annotations; } public String getLabel() { return label; } public List<Annotation> getAnnotations() { return annotations; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :