org.checkerframework.checker.nullness.compatqual.NullableDecl Maven / Gradle / Ivy
package org.checkerframework.checker.nullness.compatqual;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Identical to {@code @Nullable}, but can only be written at declaration locations. This annotation
* can be used in Java 7 code; it has no dependency on Java 8 classes.
*
* @see org.checkerframework.checker.nullness.qual.Nullable
* @checker_framework.manual #nullness-checker Nullness Checker
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface NullableDecl {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy