Coverage Report - org.kuali.student.contract.model.util.ServicesFilterArrangeByKeys
 
Classes in this File Line Coverage Branch Coverage Complexity
ServicesFilterArrangeByKeys
0%
0/8
0%
0/2
2.667
ServicesFilterArrangeByKeys$CompareService
0%
0/8
0%
0/4
2.667
 
 1  
 /*
 2  
  * Copyright 2010 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.osedu.org/licenses/ECL-2.0
 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.contract.model.util;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.Collections;
 20  
 import java.util.Comparator;
 21  
 import java.util.List;
 22  
 
 23  
 import org.kuali.student.contract.model.Service;
 24  
 
 25  
 /**
 26  
  *
 27  
  * @author nwright
 28  
  */
 29  
 public class ServicesFilterArrangeByKeys implements ServicesFilter {
 30  
 
 31  
     List<String> keys;
 32  
 
 33  0
     public ServicesFilterArrangeByKeys(List<String> keys) {
 34  0
         this.keys = keys;
 35  0
         for (int i = 0; i < keys.size(); i++) {
 36  0
             keys.set(i, keys.get(i).toLowerCase());
 37  
         }
 38  0
     }
 39  
 
 40  
     @Override
 41  
     public List<Service> filter(List<Service> services) {
 42  0
         List<Service> sorted = new ArrayList(services);
 43  0
         Collections.sort(sorted, new CompareService());
 44  0
         return sorted;
 45  
     }
 46  
 
 47  0
     public class CompareService implements Comparator<Service> {
 48  
 
 49  
         public int compare(Service service1, Service service2) {
 50  0
             int index1 = keys.indexOf(service1.getKey().toLowerCase());
 51  0
             int index2 = keys.indexOf(service2.getKey().toLowerCase());
 52  0
             if (index1 < index2) {
 53  0
                 return -1;
 54  
             }
 55  0
             if (index2 < index1) {
 56  0
                 return +1;
 57  
             }
 58  0
             return 0;
 59  
         }
 60  
     }
 61  
 }