Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/jfree/CollisionFreeLineLabelEntity.java @ 3468:f37e7e8907cb
merged flys-artifacts/2.8.1
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:39 +0200 |
parents | e19ff9086035 |
children |
comparison
equal
deleted
inserted
replaced
3387:5ffad8bde8ad | 3468:f37e7e8907cb |
---|---|
1 package de.intevation.flys.jfree; | |
2 | |
3 import java.awt.Shape; | |
4 | |
5 import org.jfree.chart.entity.XYAnnotationEntity; | |
6 | |
7 /** | |
8 * Chart Entity for Line Labels that should not collide. | |
9 */ | |
10 public class CollisionFreeLineLabelEntity | |
11 extends XYAnnotationEntity { | |
12 public CollisionFreeLineLabelEntity( | |
13 Shape hotspot, | |
14 int rendererIndex, | |
15 String toolTip, | |
16 String url | |
17 ) { | |
18 super(hotspot, rendererIndex, toolTip, url); | |
19 } | |
20 } | |
21 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |