Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/themes/LineStyle.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 | 0b9b2a0c4e64 |
children |
comparison
equal
deleted
inserted
replaced
3387:5ffad8bde8ad | 3468:f37e7e8907cb |
---|---|
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 } |