Kotlin Annotation not present at Runtime
I'm trying to use Kotlin Reflection to generate JFrames from Classes with their members.
I have created a couple Annotations, some of them are present at runtime and some are not.
Component Annotation:
@Target(AnnotationTarget.FIELD, AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.RUNTIME)
annotation class Component(val constraints: String = "")
IsEnabled Annotation:
@Target(AnnotationTarget.FIELD, AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.RUNTIME)
annotation class...