Package org.hibernate.tool.ant

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

package org.hibernate.tool.ant;

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

public class HbmLintExporterTask extends ExporterTask {

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

  protected Exporter createExporter() {
    return new HbmLintExporter();
  }
   

  String getName() {
    return "hbmlint (scans mapping for errors)";
  }

}
TOP

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

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.