1 7 8 package javax.annotation.processing; 9 10 import java.lang.annotation.*; 11 import static java.lang.annotation.RetentionPolicy .*; 12 import static java.lang.annotation.ElementType .*; 13 import javax.lang.model.SourceVersion; 14 15 16 29 @Documented 30 @Target(TYPE) 31 @Retention(RUNTIME) 32 public @interface SupportedSourceVersion { 33 SourceVersion value(); 34 } 35 | Popular Tags |