``` interface Something { @get:Awesome var p1:...
# announcements
d
Copy code
interface Something {
  @get:Awesome
  var p1: Int
}
When I have the above code, I can't see the annotation,
Awesome
, via Kotlin reflection but can via Java one. Is
@get:
only for Java side? No way to get it via Kotlin reflection only?