Home | History | Annotate | Download | only in annotation
      1 package org.apache.harmony.annotation.tests.java.lang.annotation;
      2 
      3 import java.lang.annotation.ElementType;
      4 import java.lang.annotation.Retention;
      5 import java.lang.annotation.RetentionPolicy;
      6 import java.lang.annotation.Target;
      7 
      8 @Retention(RetentionPolicy.RUNTIME)
      9 @Target( {ElementType.METHOD})
     10 public @interface TestAnnotation2 {
     11     TestAnnotation3[] arrAnno() default {};
     12     String[] arrString() default {};
     13     Class[] arrClass() default {};
     14     TestEnum1[] arrEnum() default {};
     15 }
     16