I require a nested class, however I have developed using the one class one file system. I have simply moved the class that needs to be nested, inside the outer class and left the instantiation of the inner class the same. However, when trying to debug in eclipse, my nested class gets the following error message " Source not found." -(ClassNotFoundException)
. However the code works fine, its just that I cant actively debug and see the current line of exception in my nested class.
public class Tract {
public class chicken{
}
public Tract{
chicken = new chicken(d);
}
}
thanks, daniel