Files
2022-12-13 16:54:24 +00:00

11 lines
284 B
Java
Vendored

package org.jetbrains.annotations;
import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE})
public @interface Nullable {
@NonNls String value() default "";
}