Re: [jde] Re: [jde] problems finding symbol definition if class implements interface

2004-10-10 Thread Raul Acevedo
On Sat, 2004-10-09 at 00:32 -0400, Paul Kinnucan wrote: Raul Acevedo writes: Looking at the JDEE source, it looks like it just doesn't know about symbols in interfaces at all. In particular, jde-open-jump-to-class only knows to look in the parent class, but it doesn't consider any

Re: [jde] Re: [jde] problems finding symbol definition if class implements interface

2004-10-10 Thread Paul Kinnucan
Raul Acevedo writes: On Sat, 2004-10-09 at 00:32 -0400, Paul Kinnucan wrote: Raul Acevedo writes: Looking at the JDEE source, it looks like it just doesn't know about symbols in interfaces at all. In particular, jde-open-jump-to-class only knows to look in the parent class,

Re: [jde] problems finding symbol definition if class implements interface

2004-10-08 Thread Raul Acevedo
Looking at the JDEE source, it looks like it just doesn't know about symbols in interfaces at all. In particular, jde-open-jump-to-class only knows to look in the parent class, but it doesn't consider any implemented interfaces, either in the current class or in any parent class. Is this a known

Re: [jde] problems finding symbol definition if class implements interface

2004-10-08 Thread Paul Kinnucan
Raul Acevedo writes: Looking at the JDEE source, it looks like it just doesn't know about symbols in interfaces at all. In particular, jde-open-jump-to-class only knows to look in the parent class, but it doesn't consider any implemented interfaces, either in the current class or in any

problems finding symbol definition if class implements interface

2004-10-07 Thread Raul Acevedo
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