Package org.hibernate.tool.hbm2x

Examples of org.hibernate.tool.hbm2x.HibernateConfigurationExporter


  public Hbm2CfgXmlExporterTask(HibernateToolTask parent) {
    super(parent);
  }

  public Exporter createExporter() {
    return new HibernateConfigurationExporter();
  }
View Full Code Here


  public String getName() {
    return "hbm2cfgxml (Generates hibernate.cfg.xml)";
  }
 
  protected Exporter configureExporter(Exporter exporter) {
    HibernateConfigurationExporter hce = (HibernateConfigurationExporter)super.configureExporter( exporter );
        hce.getProperties().setProperty("ejb3", ""+ejb3);
    return hce;
  }
View Full Code Here

TOP

Related Classes of org.hibernate.tool.hbm2x.HibernateConfigurationExporter

Copyright © 2018 www.massapicom. 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.