Hi,
I think I'm nearer the source of the problem - it doesn't seem to
happen with javac, only with Jikes. The JPDA guys can sleep easier now...
MIke
> Hi JDE Gurus,
>
> I'm using JDE beta 10 on NT4, JDK1.2.2, JPDA1.0 and getting a strange
> failure to resolve breakpoints.
>
> Given this test code:
>
> public class Strange {
>
> public static void main( String[] args ) {
> System.out.println("Testing...");
> }
>
> //static String test = "";
> }
>
> If I set a breakpoint on the println line everything works fine, the
> debugger stops etc.
>
> If I uncomment the static initialiser line for the test member, compile
and
> restart, JDE fails to resolve/stop at the breakpoint. This problem seems
to
> occur whenver a static member initialiser invokes a constructor. I'm not
> familiar enough with the internals of JDE or JPDA to point the accusing
> finger, but has anyone else had this problem?