Package contrib.org.hibernate.cfg

Examples of contrib.org.hibernate.cfg.NamingStrategy.classToTableName()


    }
  }

  private String extractNameFromClassName(Class<T> clasz, MonjoConverterFactory factory) {
    NamingStrategy namingStrategy = factory.getNamingStrategy();
    return namingStrategy.classToTableName(clasz.getName());
  }

  private boolean annotatedWithCollection(Class<T> clasz) {
    return clasz.isAnnotationPresent(Entity.class) && !"".equals(clasz.getAnnotation(Entity.class).value());
  }
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.