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

org.hibernate.tool.hbmlint.Detector Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
package org.hibernate.tool.hbmlint;

import org.hibernate.boot.Metadata;

public abstract class Detector {

	private Metadata metadata;
	
	public void initialize(Metadata metadata) {
		this.metadata = metadata;
	}
	
	protected Metadata getMetadata() {
		return metadata;
	}

	abstract public void visit(IssueCollector collector);
	
	abstract public String getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy