blob: a44c95cedf77f666d869bc5a922cc0d1204f72a3 [file] [log] [blame]
/*
* Created on Dec 11, 2007
*/
package com.codecommit.wicket;
import java.awt.Color;
/**
* @author Daniel Spiewak
*/
public class RangeMarker implements IRangeMarker {
private Color color;
private double end = -1;
private double start = -1;
private RangeType type;
public RangeMarker(RangeType type, Color color, double start, double end) {
this.type = type;
this.color = color;
this.start = start;
this.end = end;
}
public Color getColor() {
return color;
}
public double getEnd() {
return end;
}
public double getStart() {
return start;
}
public RangeType getType() {
return type;
}
public void setColor(Color color) {
this.color = color;
}
public void setEnd(double end) {
this.end = end;
}
public void setStart(double start) {
this.start = start;
}
public void setType(RangeType type) {
this.type = type;
}
}