no.kodeworks.kvarg.util.IdGen.scala Maven / Gradle / Ivy
package no.kodeworks.kvarg.util
final class IdGen {
var id: Long = IdGen.startId
def getAndIncId = {
val id = this.id
this.id += 1L
id
}
def setAndIncId(id: Long) {
this.id = id + 1L
}
}
object IdGen {
val startId = 1L
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy