Examples of FastClass


Examples of org.hibernate.repackage.cglib.reflect.FastClass

  public ReflectionOptimizer getReflectionOptimizer(
      Class clazz,
          String[] getterNames,
          String[] setterNames,
          Class[] types) {
    FastClass fastClass;
    BulkBean bulkBean;
    try {
      fastClass = FastClass.create( clazz );
      bulkBean = BulkBean.create( clazz, getterNames, setterNames, types );
      if ( !clazz.isInterface() && !Modifier.isAbstract( clazz.getModifiers() ) ) {
        if ( fastClass == null ) {
          bulkBean = null;
        }
        else {
          //test out the optimizer:
          Object instance = fastClass.newInstance();
          bulkBean.setPropertyValues( instance, bulkBean.getPropertyValues( instance ) );
        }
      }
    }
    catch( Throwable t ) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.