Coverage Report - org.apache.commons.clazz.reflect.extended.ExtendedReflectedClazzLoader
 
Classes in this File Line Coverage Branch Coverage Complexity
ExtendedReflectedClazzLoader
0%
0/3
N/A
1
 
 1  
 /*
 2  
  * Copyright 2002-2004 The Apache Software Foundation
 3  
  *
 4  
  * Licensed under the Apache 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.apache.org/licenses/LICENSE-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.apache.commons.clazz.reflect.extended;
 17  
 
 18  
 import org.apache.commons.clazz.Clazz;
 19  
 import org.apache.commons.clazz.ModelClazzLoader;
 20  
 import org.apache.commons.clazz.reflect.ReflectedClazzLoader;
 21  
 
 22  
 /**
 23  
  * A version of ReflectedClazzLoader that supports the extended notion of
 24  
  * JavaBeans.
 25  
  * <p>
 26  
  * It recognizes of  List, Mapped and Scalar properties. 
 27  
  *
 28  
  * @author Dmitri Plotnikov
 29  
  * @version $Revision: 155436 $ $Date: 2005-02-26 13:17:48 +0000 (Sat, 26 Feb 2005) $
 30  
  */
 31  
 public class ExtendedReflectedClazzLoader extends ReflectedClazzLoader {
 32  
 
 33  
     /**
 34  
      * Constructor for ExtendedReflectedClazzLoader.
 35  
      * 
 36  
      * @param modelClazzLoader
 37  
      * @param classLoader
 38  
      */
 39  
     public ExtendedReflectedClazzLoader(
 40  
             ModelClazzLoader modelClazzLoader,
 41  
             ClassLoader classLoader) 
 42  
     {
 43  0
         super(modelClazzLoader, classLoader);
 44  0
     }
 45  
 
 46  
     /**
 47  
      * @see ReflectedClazzLoader#createClazz(Class)
 48  
      */
 49  
     protected Clazz createClazz(Class javaClass) {
 50  0
         return new ExtendedReflectedClazz(getModelClazzLoader(), javaClass);
 51  
     }
 52  
 }