1package android.test.anno;
2
3import java.lang.annotation.*;
4
5@Target(ElementType.PARAMETER)
6@Retention(RetentionPolicy.RUNTIME)
7
8public @interface AnnoFancyParameter {
9    double factor();
10}
11