Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been working on this one error for a few hours so I thought I'd pick the brains of some pros.

I am getting a null pointer exception at the modelData.add(i, es) method. I know from debugging that es isn't null. I'm really confused, thanks.

public class EventTableModel extends AbstractTableModel {

    //private int rowCount = 0;
    protected List<EventSeat> modelData;
    private static final int COLUMN_COUNT = 3;
    private Event e;
    Event j = GUIpos.m;
    int i = 1;

public EventTableModel(Event e) {
    this.e = e;
    try {
        System.out.println(modelData);
        for (EventSeat es : e.getEventSeats()) {
            modelData.add(i, es);
            i++;
        }
    } catch (DataException ex) {
        Logger.getLogger(EventTableModel.class.getName()).log(Level.SEVERE, null, ex);
    }

}
share|improve this question
Where does modelData get initialized? – Andrew Marshall Mar 8 '11 at 0:07
Is modelData null? – Oli Charlesworth Mar 8 '11 at 0:07
Where is modelData initialised? Shouldn't there be a modelData = new ArrayList<EventSeat>(); somewhere? – srgerg Mar 8 '11 at 0:09
holy crap, that's it I think....let me check – novicePrgrmr Mar 8 '11 at 0:15

3 Answers

up vote 9 down vote accepted
protected List<EventSeat> modelData = new ArrayList<EventSeat>();
share|improve this answer
wow, that was easy! – novicePrgrmr Mar 8 '11 at 0:16

Try

protected List<EventSeat> modelData = new ArrayList<EventSeat>(); 
share|improve this answer
Bonus points if you change this to match the other two answers; I don't think you can instantiate a List like that. – phooji Mar 8 '11 at 0:09

On the first look, seems like modelData has not been instantiated. I would instantiate the modelData like:

protected List<EventSeat> modelData = new ArrayList<EventSeat>();

FYI.. In Java 7 there will be a new syntax you can use- someObject?.doSomething();

share|improve this answer
I don't think e.getEventSeats() returns null (or returns an iterator containing a nulll element). If that were the case the code would terminate at the start of the for. – phooji Mar 8 '11 at 0:15
Sure..wrote the solution in haste. Thanks for pointing this out. – Piyush Mar 8 '11 at 0:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.