Mercurial > dive4elements > river
comparison 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 |
comparison
equal
deleted
inserted
replaced
1676:6e840e213fdf | 1677:dd9dfe1e48fa |
---|---|
1 package de.intevation.flys.jfree; | |
2 | |
3 import java.util.List; | |
4 | |
5 import de.intevation.flys.model.Annotation; | |
6 | |
7 | |
8 public class FLYSAnnotation { | |
9 | |
10 protected List<Annotation> annotations; | |
11 | |
12 protected String label; | |
13 | |
14 | |
15 public FLYSAnnotation(String label, List<Annotation> annotations) { | |
16 this.label = label; | |
17 this.annotations = annotations; | |
18 } | |
19 | |
20 public String getLabel() { | |
21 return label; | |
22 } | |
23 | |
24 public List<Annotation> getAnnotations() { | |
25 return annotations; | |
26 } | |
27 } | |
28 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |