no.ks.kes.lib.AnnotationUtil.kt Maven / Gradle / Ivy
package no.ks.kes.lib
import kotlin.reflect.KClass
import kotlin.reflect.full.findAnnotation
object AnnotationUtil {
fun isDeprecated(it: KClass): Boolean {
return it.findAnnotation() != null
}
}
val > KClass.deprecated: Boolean
get() = AnnotationUtil.isDeprecated(this)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy