Re-asking because my other thread wasn't clear and I didn't understand the true problem.
public class Test extends Survey
{
ArrayList<Answer> answerList;
ArrayList<Question> questionList;
public Test()
{
questionList = new ArrayList<Question>();
answerList = new ArrayList<Answer>();
...
}
...
}
In the eclipse debugger, it's showing answerList value as null, while questionList is not. What gives?
Edit: Is it possible my debugger is messed up? I can't get it to stop where I'm setting break points. It's stopping at old ones and ignoring new ones. I didn't set up a new configuration or anything.
answerList = new ArrayList<Answer>();answerListas null.null. And no, it is not being reinitialized asnulllater. However, I'm having trouble with the debugger getting to stop at new break points now. Could that be related? I haven't changed configurations or anything, but it's ignoring new breakpoints.