I have something like:
public interface FooInterface {
public static final int FOO = 1;
}
public class FooClass implements FooInterface {
public void doSomething() {
System.out.println("I'm doing something with " + FOO);
}
}
If I put the cursor on the System.out.println, on FOO,
jde-open-class-at-point can't find the definition. If I write
FooInterface.FOO instead of FOO, it's fine, but FOO by itself is not.
Raul
