All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tool.ant.HbmLintExporterTask Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
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)";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy