Clover Coverage Report - Kuali Student 1.2-M4-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Jul 20 2011 11:14:35 EDT
../../../../../../img/srcFileCovDistChart0.png 41% of files have more coverage
4   40   1   4
0   13   0.25   1
1     1  
1    
 
  StateValuesFinder       Line # 27 4 0% 1 5 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007 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.student.core.bo.options;
17   
18    import java.util.ArrayList;
19    import java.util.List;
20   
21    import org.kuali.rice.core.util.KeyLabelPair;
22    import org.kuali.rice.kns.lookup.keyvalues.KeyValuesBase;
23   
24    /**
25    * This class returns list of State key value pairs.
26    */
 
27    public class StateValuesFinder extends KeyValuesBase {
28   
29    /**
30    * @see org.kuali.rice.kns.lookup.keyvalues.KeyValuesFinder#getKeyValues()
31    */
 
32  0 toggle public List<KeyLabelPair> getKeyValues() {
33  0 List<KeyLabelPair> labels = new ArrayList<KeyLabelPair>();
34  0 labels.add(new KeyLabelPair("Actual", "Actual"));
35  0 labels.add(new KeyLabelPair("Tentative", "Tentative"));
36   
37  0 return labels;
38    }
39   
40    }