comparison flys-artifacts/src/main/java/de/intevation/flys/themes/LineStyle.java @ 3464:0b9b2a0c4e64

Point labels can have a background color now. flys-artifacts/trunk@5132 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Christian Lins <christian.lins@intevation.de>
date Thu, 26 Jul 2012 10:02:07 +0000
parents
children
comparison
equal deleted inserted replaced
3463:7198f04e4221 3464:0b9b2a0c4e64
1 package de.intevation.flys.themes;
2
3 import java.awt.Color;
4
5 public class LineStyle {
6 protected Color lineColor;
7 protected int lineWidth;
8
9 public LineStyle(Color color, int width) {
10 this.lineColor = color;
11 this.lineWidth = width;
12 }
13
14 public int getWidth() {
15 return lineWidth;
16 }
17
18 public Color getColor() {
19 return lineColor;
20 }
21 }

http://dive4elements.wald.intevation.org