biz.ostw.fsi.orm.hibernate.xml.attr.AGenerated.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fsi Show documentation
Show all versions of fsi Show documentation
File structure investigation project
package biz.ostw.fsi.orm.hibernate.xml.attr
import biz.ostw.fsi.xml.WithAttributes
/**
* @author mathter (c) 2017.
*/
trait AGenerated extends WithAttributes {
def generated(): String = {
this.attribute(AGenerated.attr)
}
}
object AGenerated {
val attr = "generated"
}