blob: c24a4e80b8e4822cc89cee2452316b1cdd903ade [file] [log] [blame]
package test;
import java.lang.annotation.RetentionPolicy;
public interface EnumInParam {
public @interface MyRetention {
RetentionPolicy value();
}
@MyRetention(RetentionPolicy.RUNTIME)
public @interface RetentionAnnotation {
String value();
}
}