mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-03 00:21:31 +00:00
10 lines
199 B
Java
10 lines
199 B
Java
package test;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.FIELD, ElementType.CONSTRUCTOR})
|
|
@interface targetAnnotation {
|
|
String value();
|
|
}
|