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