Coverage Report - org.apache.commons.clazz.common.ExtendedClazzLoaderFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
ExtendedClazzLoaderFactory
0%
0/8
0%
0/8
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.common;
 17  
 
 18  
 import org.apache.commons.clazz.ClazzLoaderFactory;
 19  
 import org.apache.commons.clazz.bean.BeanClazzLoader;
 20  
 import org.apache.commons.clazz.bean.BeanGroupClazzLoader;
 21  
 import org.apache.commons.clazz.reflect.ReflectedGroupClazzLoader;
 22  
 import org.apache.commons.clazz.reflect.extended.ExtendedReflectedClazzLoader;
 23  
 
 24  
 /**
 25  
  * 
 26  
  * @author <a href="mailto:dmitri@apache.org">Dmitri Plotnikov</a>
 27  
  * @version $Id: ExtendedClazzLoaderFactory.java 155436 2005-02-26 13:17:48Z dirkv $
 28  
  */
 29  
 public class ExtendedClazzLoaderFactory extends ClazzLoaderFactorySupport {
 30  
 
 31  0
     public static final ClazzLoaderFactory FACTORY =
 32  
         new ExtendedClazzLoaderFactory();
 33  
         
 34  
     public static final String MODEL = "Extended";
 35  
 
 36  
     /**
 37  
      * Constructor for ExtendedClazzLoaderFactory.
 38  
      */
 39  0
     protected ExtendedClazzLoaderFactory() {
 40  0
         addClazzLoaderClass(ReflectedGroupClazzLoader.class);
 41  0
         addClazzLoaderClass(BeanGroupClazzLoader.class);
 42  0
         addClazzLoaderClass(ExtendedReflectedClazzLoader.class);
 43  0
         addClazzLoaderClass(BeanClazzLoader.class);
 44  0
     }
 45  
 
 46  
     public String getClazzModel() {
 47  0
         return MODEL;
 48  
     }
 49  
 }