Package org.hibernate.tool.ant

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

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

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

public class Hbm2DocExporterTask extends ExporterTask {

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

  public String getName() {
    return "hbm2doc (Generates html schema documentation)";
  }

  protected Exporter createExporter() {
    return new DocExporter();
  }
}
TOP

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

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.