1 package android.test.anno; 2 3 import java.lang.annotation.*; 4 5 @Target(ElementType.CONSTRUCTOR) 6 @Retention(RetentionPolicy.RUNTIME) 7 8 public @interface AnnoFancyConstructor { numArgs()9 public int numArgs() default 0; 10 } 11
1 package android.test.anno; 2 3 import java.lang.annotation.*; 4 5 @Target(ElementType.CONSTRUCTOR) 6 @Retention(RetentionPolicy.RUNTIME) 7 8 public @interface AnnoFancyConstructor { numArgs()9 public int numArgs() default 0; 10 } 11