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

org.hibernate.cfg.reveng.SimpleMetaAttribute Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
package org.hibernate.cfg.reveng;

public class SimpleMetaAttribute {
	String value;
	boolean inheritable = true;

	public SimpleMetaAttribute(String value, boolean inherit) {
		this.value = value;
		this.inheritable = inherit;
	}

	public String toString() {
		return value;
	}

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy