mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
13 lines
206 B
Java
13 lines
206 B
Java
import static BeanUtil.A.NOT_NULL;
|
|
class BeanUtil {
|
|
public static class A {
|
|
public static final Object NOT_NULL = null;
|
|
}
|
|
@NN<caret>
|
|
String foo() {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@interface NotNull {}
|