Application Configuration
- Main class: com.google.gwt.dev.GWTShell
- Program parameters: com.foo.TestApp/TestApp.html (adjust..)
In "Project Settings -> Modules" do the following:
- Add src and bin to your classpath under the tab "Libraries
(classpath)"
- I suppose you already added gwt-user.jar and gwt-dev-windows.jar
- Under the tab "Order/Export", rearrange the entries into the
following order:
jdk 1.5.x
src
<Module source>
bin
gwt-user.jar
gwt-dev-windows.jar
If you do not fix the order, debugging will open the html page but you
may get the error that your class cannot be found.
Hugo
However, when I try to set breakpoints in the Java code, they show up
with red Xs and the message "Breakpoint is invalid : Breakpoint does
not belong to any class." And of course the breakpoints are not hit
when I actually execute the code.
Any ideas?