Store third-party annotations in a separate directory

This commit is contained in:
Dmitry Jemerov
2017-09-08 17:26:12 +02:00
parent 296638a7c4
commit cc8fbf6078
41 changed files with 11 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
package 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.UNKNOWN)
@Retention(RetentionPolicy.RUNTIME)
public @interface Nullable {
}