blob: fdcb56e868f1d9d08b02300fccde05670a5584b6 [file] [log] [blame] [raw]
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 {
}