IDEA-90142 Do not propose contant names after '@'

This commit is contained in:
peter
2012-08-14 16:42:39 +02:00
parent 8d784f01c4
commit 546028e1aa
4 changed files with 27 additions and 1 deletions
@@ -0,0 +1,12 @@
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 {}
@@ -0,0 +1,12 @@
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 {}