f4613b8db1
#KT-10418 Fixed #KT-10594 Fixed
17 lines
373 B
Java
Vendored
17 lines
373 B
Java
Vendored
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 {
|
|
|
|
}
|