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
+15
View File
@@ -0,0 +1,15 @@
import javax.annotation.*;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import javax.annotation.meta.TypeQualifierNickname;
import javax.annotation.meta.When;
@Documented
@TypeQualifierNickname
@Nonnull(when = When.ALWAYS)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyNonnull {
}