891011121314
public HbmLintExporterTask(HibernateToolTask parent) { super( parent ); } protected Exporter createExporter() { return new HbmLintExporter(); }
8485868788899091
Configuration configuration = new Configuration(); addMappings( getMappings(), configuration ); configuration.buildMappings(); new HbmLintExporter(configuration, getOutputDir()).start(); }
2324252627282930