1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.docsearch; |
17 | |
|
18 | 0 | public class Range { |
19 | |
|
20 | |
private String lowerBoundValue; |
21 | |
private String upperBoundValue; |
22 | 0 | private boolean lowerBoundInclusive = true; |
23 | 0 | private boolean upperBoundInclusive = true; |
24 | |
|
25 | |
public String getLowerBoundValue() { |
26 | 0 | return lowerBoundValue; |
27 | |
} |
28 | |
|
29 | |
public void setLowerBoundValue(String lowerBoundValue) { |
30 | 0 | this.lowerBoundValue = lowerBoundValue; |
31 | 0 | } |
32 | |
|
33 | |
public String getUpperBoundValue() { |
34 | 0 | return upperBoundValue; |
35 | |
} |
36 | |
|
37 | |
public void setUpperBoundValue(String upperBoundValue) { |
38 | 0 | this.upperBoundValue = upperBoundValue; |
39 | 0 | } |
40 | |
|
41 | |
public boolean isLowerBoundInclusive() { |
42 | 0 | return lowerBoundInclusive; |
43 | |
} |
44 | |
|
45 | |
public void setLowerBoundInclusive(boolean lowerBoundInclusive) { |
46 | 0 | this.lowerBoundInclusive = lowerBoundInclusive; |
47 | 0 | } |
48 | |
|
49 | |
public boolean isUpperBoundInclusive() { |
50 | 0 | return upperBoundInclusive; |
51 | |
} |
52 | |
|
53 | |
public void setUpperBoundInclusive(boolean upperBoundInclusive) { |
54 | 0 | this.upperBoundInclusive = upperBoundInclusive; |
55 | 0 | } |
56 | |
|
57 | |
} |