biz.ostw.fsi.orm.hibernate.xml.attr.AOrderBy.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 AOrderBy extends WithAttributes {
def orderBy(): String = {
this.attribute(AOrderBy.attr)
}
}
object AOrderBy {
val attr = "order-by"
}