Coverage Report - org.kuali.rice.krad.keyvalues.IndicatorValuesFinder
 
Classes in this File Line Coverage Branch Coverage Complexity
IndicatorValuesFinder
0%
0/9
N/A
1
 
 1  
 /*
 2  
  * Copyright 2005-2008 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.krad.keyvalues;
 17  
 
 18  
 import org.kuali.rice.core.util.ConcreteKeyValue;
 19  
 import org.kuali.rice.core.util.KeyValue;
 20  
 import org.kuali.rice.krad.util.KRADConstants;
 21  
 
 22  
 import java.util.ArrayList;
 23  
 import java.util.Collections;
 24  
 import java.util.List;
 25  
 
 26  
 /**
 27  
  * This class returns list of boolean key value pairs.
 28  
  * 
 29  
  * 
 30  
  */
 31  0
 public class IndicatorValuesFinder extends KeyValuesBase {
 32  
 
 33  0
         public static final IndicatorValuesFinder INSTANCE = new IndicatorValuesFinder();
 34  
         
 35  
         protected static final List<KeyValue> ACTIVE_LABELS;
 36  
         static {
 37  0
                 final List<KeyValue> activeLabels = new ArrayList<KeyValue>(3);
 38  0
         activeLabels.add(new ConcreteKeyValue(KRADConstants.YES_INDICATOR_VALUE, "Yes"));
 39  0
         activeLabels.add(new ConcreteKeyValue(KRADConstants.NO_INDICATOR_VALUE, "No"));
 40  0
         activeLabels.add(new ConcreteKeyValue("", "Both"));
 41  
         
 42  0
         ACTIVE_LABELS = Collections.unmodifiableList(activeLabels);
 43  0
         }
 44  
         
 45  
     @Override
 46  
         public List<KeyValue> getKeyValues() {
 47  0
         return ACTIVE_LABELS;
 48  
     }
 49  
 }