Error while debugging in eclipse

publicstaticvoid main(String[] args)throws java.io.FileNotFoundException,

java.io.IOException,

java.lang.InterruptedException{

fileName =new String(args[args.length-1]);

// set up the parser and scanner with the appropriate file

// name

FileReader aslFile =new FileReader(fileName);

NolifeScanner scanner =new NolifeScanner(aslFile);

NolifeParser parser =new NolifeParser(scanner);

hi all,

I am debugging a java program in Eclipse 3.2.1 in debug perspective.

When I'm just running the program it's fine. But when I'm launching the debugger, and trying to step into the NoLifeParser() it stops and shows me the error message like this:

ClassLoader.class

Source not found

The source attachment does not contain the source for the ClassLoader.class

You can change the source attachment by clicking Change Attached Source below:

BUTTON

and then the source code for ClassLoader class.

Please help, I'm struggling =(

Thanks in advance,....!!

[1420 byte] By [Sandesha] at [2007-11-26 18:38:08]
# 1
This NolifeParser is some third party package, right? Do you have the source, I mean do you have in your project the file NolifeParser.java?
manuel.leiriaa at 2007-7-9 6:12:12 > top of Java-index,Java Essentials,New To Java...
# 2
yes I have that file.....
Sandesha at 2007-7-9 6:12:12 > top of Java-index,Java Essentials,New To Java...