I'm a relative newbie to java and have encountered a "source not found" error when trying to debug the following section of code (for the ParseException. class).
If I click on the "Change Attached Source..." button and select the folder containing the 'rt.jar' file it asks for, I get the same message.
The release notes I have for release Eclipse 3.2.2 says the following: "The debugger requires that class files be compiled with debug attributes if it is to be able to display line numbers and local variables. Quite often, class libraries (for example, "rt.jar") are compiled without complete debug attributes, and thus local variables and method arguments for those classes are not visible in the debugger."
but I'm not sure what this means! Can anyone help?!
Code:
public PaymentDates (String stlDate, String matDate, int payFreq) throws ParseException {
this.stlDate = Dates.convertStringToUSDate(stlDate);
this.matDate = Dates.convertStringToUSDate(matDate);
this.payFreq = payFreq;
configure();
}
The release notes I have for release Eclipse 3.2.2 says the following: "The debugger requires that class files be compiled with debug attributes if it is to be able to display line numbers and local variables. Quite often, class libraries (for example, "rt.jar") are compiled without complete debug attributes, and thus local variables and method arguments for those classes are not visible in the debugger."
but I'm not sure what this means! Can anyone help?!
Comment