RE: Remote Applet Debugging
[email protected] Mon, 12 Dec 2005 14:47:00 -0800 (PST)
| Newsgroups | gmane.comp.java.jswat.user |
|---|---|
| Message-ID | <[email protected]> |
Yes, the feature exists, but it sounds like your sourcepath still isn't set correctly. It could also be that the source code was not compiled with the -g flag, so the line number information is missing from the class files. Verify that you are compiling the code using 'javac -g', then give me an example of the following: 1. Path to a source file in your project. 2. The corresponding entry in the sourcepath. n Flatoff Allan wrote: > Hello - > > It looks like I got the debugger working for the most part. > > I have a question though . . . > > When I'm debugging - I don't see any graphical indicator of what line > I'm on > in the source code. Does such a feature exist? If so how can I turn it > on. > > Right now I'm just watching the output section on the debugger console > for line number and > Scrolling to the line number in my code > > Thanks!