Home | History | Annotate | Download | only in quals
      1 package checkers.quals;
      2 
      3 import java.lang.annotation.*;
      4 
      5 /**
      6  * A meta-annotation indicating that the annotated annotation is a type
      7  * qualifier.
      8  *
      9  * Examples of such qualifiers: {@code @ReadOnly}, {@code @NonNull}
     10  */
     11 @Documented
     12 @Retention(RetentionPolicy.RUNTIME)
     13 @Target(ElementType.ANNOTATION_TYPE)
     14 public @interface TypeQualifier {
     15 
     16 }
     17