Coverage Report - org.kuali.rice.kew.docsearch.Range
 
Classes in this File Line Coverage Branch Coverage Complexity
Range
0%
0/15
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 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  
 }