Coverage Report - org.kuali.rice.kns.util.TypedArrayList
 
Classes in this File Line Coverage Branch Coverage Complexity
TypedArrayList
0%
0/38
0%
0/18
3.125
 
 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.kns.util;
 17  
 
 18  
 import java.beans.Beans;
 19  
 import java.lang.reflect.Constructor;
 20  
 import java.lang.reflect.Modifier;
 21  
 import java.util.ArrayList;
 22  
 
 23  
 import org.apache.commons.lang.ArrayUtils;
 24  
 
 25  
 /**
 26  
  * This class is used to maintain an ArrayList for a specified object type.
 27  
  * 
 28  
  * 
 29  
  */
 30  
 public class TypedArrayList extends ArrayList {
 31  
     private static final long serialVersionUID = 6238521951259126730L;
 32  
     private final Class listObjectType;
 33  
 
 34  
 
 35  
     public TypedArrayList(Class listObjectType) {
 36  0
         super();
 37  
 
 38  0
         if (listObjectType == null) {
 39  0
             throw new RuntimeException("class type for list is required.");
 40  
         }
 41  
         
 42  
         //the following code checks to see if the class has a visible default constructor
 43  
         
 44  0
         boolean foundDefaultConstructor = false;
 45  
         
 46  0
         Constructor[] constructors = listObjectType.getConstructors();
 47  0
         for (Constructor constructor : constructors) {
 48  0
             Class[] parameterType = constructor.getParameterTypes();
 49  
             
 50  
             //check for a constructor that takes no arguments and is public
 51  0
             if(ArrayUtils.isEmpty(parameterType) &&
 52  
                Modifier.isPublic(constructor.getModifiers())) {
 53  0
                 foundDefaultConstructor = true;
 54  0
                 break;
 55  
             }
 56  
         }
 57  
         
 58  0
         if(!foundDefaultConstructor) {
 59  0
             throw new RuntimeException("unable to get default constructor for " + listObjectType.getName());
 60  
         }
 61  0
         this.listObjectType = listObjectType;
 62  
         
 63  0
     }
 64  
 
 65  
     /**
 66  
      * @see java.util.List#add(int, java.lang.Object)
 67  
      */
 68  
     public void add(int index, Object element) {
 69  0
         checkType(element);
 70  0
         super.add(index, element);
 71  0
     }
 72  
 
 73  
     /**
 74  
      * @see java.util.Collection#add(java.lang.Object)
 75  
      */
 76  
     public boolean add(Object o) {
 77  0
         checkType(o);
 78  0
         return super.add(o);
 79  
     }
 80  
 
 81  
     /**
 82  
      * @see java.util.List#get(int)
 83  
      */
 84  
     public Object get(int index) {
 85  0
         growArray(index);
 86  0
         return super.get(index);
 87  
     }
 88  
 
 89  
     /**
 90  
      * @see java.util.List#set(int, java.lang.Object)
 91  
      */
 92  
     public Object set(int index, Object element) {
 93  0
         growArray(index);
 94  0
         return super.set(index, element);
 95  
     }
 96  
 
 97  
 
 98  
     /**
 99  
      * Adds new instances of type listObjectType to the arraylist until the size of the list is greater than the index required.
 100  
      */
 101  
     private void growArray(int index) {
 102  0
         if (index < 0) {
 103  0
             throw new IndexOutOfBoundsException("Index must be positive.");
 104  
         }
 105  
         // ensureCapacity(index); // Increments modCount
 106  
 
 107  0
         while (size() <= index) {
 108  
             try {
 109  0
                 super.add(listObjectType.newInstance());
 110  
             }
 111  0
             catch (InstantiationException e) {
 112  0
                 throw new RuntimeException("Cannot get new instance of class " + listObjectType.getName());
 113  
             }
 114  0
             catch (IllegalAccessException e) {
 115  0
                 throw new RuntimeException("Cannot get new instance of class " + listObjectType.getName());
 116  0
             }
 117  
         }
 118  0
     }
 119  
 
 120  
 
 121  
     /**
 122  
      * Checks the type of an element matches the underlying list type.
 123  
      */
 124  
     private void checkType(Object element) {
 125  0
         if (element != null) {
 126  0
             if (!Beans.isInstanceOf(element, listObjectType)) {
 127  0
                 throw new RuntimeException("element is not of correct type.");
 128  
             }
 129  
         }
 130  0
     }
 131  
 
 132  
     /**
 133  
      * @return Returns the listObjectType.
 134  
      */
 135  
     public Class getListObjectType() {
 136  0
         return listObjectType;
 137  
     }
 138  
 
 139  
 }