Coverage Report - nl.beesting.beangenerator.locators.methodlocators.ClassResolver
 
Classes in this File Line Coverage Branch Coverage Complexity
ClassResolver
N/A
N/A
0
 
 1  
 package nl.beesting.beangenerator.locators.methodlocators;
 2  
 
 3  
 /**
 4  
  * Interface for all class resolvers to implement. 
 5  
  */
 6  
 public interface ClassResolver {
 7  
 
 8  
     /**
 9  
      * Find a class with given name regardless of the package
 10  
      * @param name the name of the class
 11  
      * @return the found class or null if none was found
 12  
      */
 13  
     Class<?> findClass(String name);
 14  
 }