Coverage Report - net.admin4j.util.CompositeBeanComparator
 
Classes in this File Line Coverage Branch Coverage Complexity
CompositeBeanComparator
44%
4/9
33%
2/6
3
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  * 
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  * 
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.util;
 15  
 
 16  
 import java.util.Comparator;
 17  
 
 18  
 import net.admin4j.deps.commons.beanutils.BeanComparator;
 19  
 import net.admin4j.deps.commons.lang3.Validate;
 20  
 
 21  
 @SuppressWarnings("rawtypes")
 22  
 public class CompositeBeanComparator implements Comparator {
 23  
     
 24  
     private BeanComparator[] comparator;
 25  
     
 26  3
     public CompositeBeanComparator(String[] properties) {
 27  
         Validate.notEmpty("Null or empty properties not allowed.");
 28  3
         comparator = new BeanComparator[properties.length];
 29  
         
 30  9
         for (int i = 0; i < properties.length; i++) {
 31  
             comparator[i] = new BeanComparator(properties[i]);
 32  
         }
 33  3
     }
 34  
 
 35  
     public int compare(Object obj1, Object obj2) {
 36  0
         int answer = 0;
 37  0
         for (int i = 0; i < comparator.length; i++) {
 38  
             answer = comparator[i].compare(obj1, obj2);
 39  
             
 40  0
             if (answer != 0) {
 41  0
                 return answer;
 42  
             }
 43  
         }
 44  
         
 45  0
         return answer;
 46  
     }
 47  
 
 48  
 }