• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package android.test.anno;
2 
3 import java.lang.annotation.Retention;
4 import static java.lang.annotation.RetentionPolicy.RUNTIME;
5 
6 @Retention(RUNTIME) public @interface MissingAnnotation {
7 }
8 
9