Package org.hibernate.tool.ant

Source Code of org.hibernate.tool.ant.Hbm2HbmXmlExporterTask

/*
* Created on 25-Feb-2005
*
*/
package org.hibernate.tool.ant;

import org.hibernate.tool.hbm2x.Exporter;
import org.hibernate.tool.hbm2x.HibernateMappingExporter;

public class Hbm2HbmXmlExporterTask extends ExporterTask {

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

  protected Exporter createExporter() {
    return new HibernateMappingExporter();
 
 
  public String getName() {
    return "hbm2hbmxml (Generates a set of hbm.xml files)";
  }
}
TOP

Related Classes of org.hibernate.tool.ant.Hbm2HbmXmlExporterTask

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.