mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 10:58:45 +07:00
10 lines
348 B
Java
10 lines
348 B
Java
package org.jetbrains.annotations;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Retention(RetentionPolicy.CLASS)
|
|
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE})
|
|
public @interface NotNull {
|
|
String value() default "";
|
|
Class<? extends Exception> exception() default Exception.class;
|
|
} |