view flys-artifacts/src/main/java/de/intevation/flys/jfree/FLYSAnnotation.java @ 1677:dd9dfe1e48fa

Bugfixes for various issues: Improved rendering process of annotations. flys-artifacts/trunk@2894 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 05 Oct 2011 11:23:18 +0000
parents
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 :

http://dive4elements.wald.intevation.org