christian@3464: package de.intevation.flys.themes; christian@3464: christian@3464: import java.awt.Color; christian@3464: christian@3464: public class LineStyle { christian@3464: protected Color lineColor; christian@3464: protected int lineWidth; christian@3464: christian@3464: public LineStyle(Color color, int width) { christian@3464: this.lineColor = color; christian@3464: this.lineWidth = width; christian@3464: } christian@3464: christian@3464: public int getWidth() { christian@3464: return lineWidth; christian@3464: } christian@3464: christian@3464: public Color getColor() { christian@3464: return lineColor; christian@3464: } christian@3464: }