mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-30 15:51:53 +00:00
13 lines
262 B
Java
13 lines
262 B
Java
package test;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
public interface AnnotationWithEnumInParam {
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface RetentionAnnotation {
|
|
String value();
|
|
}
|
|
}
|