mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
11 lines
269 B
Java
11 lines
269 B
Java
package pkg;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target(ElementType.PACKAGE)
|
|
@javax.annotation.Nonnull
|
|
@javax.annotation.meta.TypeQualifierDefault({ElementType.METHOD, ElementType.PARAMETER})
|
|
public @interface NonNullApi {
|
|
}
|