Add CLI test on new jsr305 flag values

This commit is contained in:
e5l
2017-09-19 17:51:23 +06:00
committed by Leonid Stashevsky
parent 1e157d6480
commit cbaf38f793
24 changed files with 195 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.annotation.meta.TypeQualifierDefault;
@Retention(RetentionPolicy.RUNTIME)
@Documented
@MyMigrationNonnull
@TypeQualifierDefault({ ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD })
public @interface MyNonnullApi {
}