blob: dca74c34642fc77e8196e78c915b6bd91552ec9d [file] [log] [blame]
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();
}
}