All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.yass.yass.60.0.1.source-code.Tag.kt Maven / Gradle / Ivy

There is a newer version: 66.0.0
Show newest version
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