summaryrefslogtreecommitdiffstats
path: root/contrib/com/codecommit/wicket/LineStyle.java
blob: ef53c5b7ddfde3834f5ec20b891e68d073d3198c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Created on Dec 11, 2007
 */
package com.codecommit.wicket;

import java.io.Serializable;

/**
 * @author Daniel Spiewak
 */
public class LineStyle implements ILineStyle, Serializable {

	private static final long serialVersionUID = 1L;
	
	private int blankLength = -1;
	private int segmentLength = -1;
	private int thickness = -1;
	
	public LineStyle(int thickness, int segmentLength, int blankLength) {
		this.thickness = thickness;
		this.segmentLength = segmentLength;
		this.blankLength = blankLength;
	}
	
	public int getBlankLength() {
		return blankLength;
	}

	public int getSegmentLength() {
		return segmentLength;
	}

	public int getThickness() {
		return thickness;
	}

	public void setBlankLength(int blankLength) {
		this.blankLength = blankLength;
	}

	public void setSegmentLength(int segmentLength) {
		this.segmentLength = segmentLength;
	}

	public void setThickness(int thickness) {
		this.thickness = thickness;
	}
}