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