AnnoSimpleMethod.java revision 7365493ad8d360c1dcf9cd8b6eee62747af01cae
1package android.test.anno;
2
3import java.lang.annotation.*;
4
5@Target(ElementType.METHOD)
6@Retention(RetentionPolicy.RUNTIME)
7
8public @interface AnnoSimpleMethod {}
9