Don't know if it is related to your problem or not, but you no longer need
to have the EIEIO package in your load-path. JDE 2.1.6beta10 includes the
pieces of EIEIO that are required.
Mark Messer wrote in message ...
>I'm trying to debug this simple program. When I "step over" it runs the
>whole program (all print output appears
>in the CLI window) and I get the errors listed below. Any idea what I'm
>missing? I am using JDK1.2.2
>EIEIO 0.13, JPDA 1.0, NT 4.0, FSF Emacs 20.3.1, JDE 2.1.6 beta 10.
>
>public class t {
> public static void main(String args[]) {
> int ttt = 5;
> System.out.println("hello1");
> System.out.println("hello2");
> System.out.println("hello3");
> System.out.println("hello4");
> System.out.println("hello5");
> System.out.println("hello6");
> System.out.println("hello7");
> }
>}
>
>
>*** Debugger Output for Process t(2) ***
>
>Launched VM Java Debug Interface (Reference Implementation) version 1.0
>Java Debug Wire Protocol (Reference Implementation) version 1.0
>JVM Debug Interface version 1.0
>JVM version 1.2.2 (Classic VM, build JDK-1.2.2-W, native threads, nojit)
>vm started...
>All threads suspended...
>Launching vm to run t
>t process ended.
>Application I/O closed
>Application I/O closed
>Input error; application I/O closed
>vm disconnected...
>
>
>
>