Is it normal that whenever I debug a Java application that has a swing gui using Eclipse it fails to debug properly whenever it reaches a line that has something to do with swing.
Heres an example:
int number = 0; //Debugs fine
textbox.setText(Integer.toString(number)); //Takes me to this window saying "Source not Found"
Below is an image detailing what comes up when the debugger reaches a line that has something to do with the swing GUI: