IDEA-52529 enum member not suggested while adding a static array right in the enum class

This commit is contained in:
peter
2010-04-15 17:43:30 +04:00
parent deace80d7b
commit fac5c19893
4 changed files with 17 additions and 2 deletions
@@ -0,0 +1,6 @@
public enum ButtonKey {
CANCEL_ALL,
CANCEL_SELL;
public static final ButtonKey[] ARR = {CANCEL_ALL, CANCEL_S<caret>};
}
@@ -0,0 +1,6 @@
public enum ButtonKey {
CANCEL_ALL,
CANCEL_SELL;
public static final ButtonKey[] ARR = {CANCEL_ALL, CANCEL_SELL<caret>};
}