summaryrefslogtreecommitdiffstats
path: root/contrib/com/codecommit/wicket/RangeMarker.java
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/com/codecommit/wicket/RangeMarker.java')
-rw-r--r--contrib/com/codecommit/wicket/RangeMarker.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/contrib/com/codecommit/wicket/RangeMarker.java b/contrib/com/codecommit/wicket/RangeMarker.java
deleted file mode 100644
index a44c95ce..00000000
--- a/contrib/com/codecommit/wicket/RangeMarker.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * 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;
- }
-}