Code:
private final int A0 = 0;
private final int A1 = 1;
.....
int a = 0;
....
switch (a) {
case [Ctrl + Space]
}
When I press Ctrl + Space, I hope eclipse shows a list included A0 and A1, but it doesn’t. How to fix this issue?
I’m using Indigo.
Make them real constants:
or type
A0yourself.