.yass.yass.60.0.1.source-code.Tag.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yass Show documentation
Show all versions of yass Show documentation
Yet Another Service Solution
package ch.softappeal.yass
import java.lang.reflect.AnnotatedElement
@MustBeDocumented
@Retention
@Target(AnnotationTarget.CLASS, AnnotationTarget.FIELD, AnnotationTarget.FUNCTION)
annotation class Tag(val value: Int)
fun tag(element: AnnotatedElement): Int =
(element.getAnnotation(Tag::class.java) ?: error("missing tag for '$element'")).value
© 2015 - 2025 Weber Informatics LLC | Privacy Policy