Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an ArrayList that I am adding objects to. Objects are added by using a textbox.

The problem I have is when user enters a value into the textbox, all the entries in my ArrayList take on the new value.

if(e.getSource() == textbox){
        String name = textbox.getText();            
        NameSurferEntry entry = new NameSurferEntry();
        entry = db.findEntry(name);
        graph.addEntry(entry);
        graph.update();
        textbox.setText("");

    }

Code to add entry:

public void addEntry(NameSurferEntry entry) {       
    entryArray.add(entry);          
    }
share|improve this question
From the posted code it'll be difficult to help, although I'd be suspicious of the db.findEntry() method. The fact that you create a new NameSurferEntry then immediately overwrite it is also unusual. – Dave Newton Oct 19 '11 at 16:52
You're discarding your new NameSurferEntry as soon as you create it, which is very suspicious. How does findEntry work? What does it return? – Mat Oct 19 '11 at 16:52
what does graph.update() do? – aldrin Oct 19 '11 at 16:53
Based on the code that you've posted - you shouldn't be seeing this problem. Assuming entryArray is an ArrayList<NameSurferEntry>, then calling the add method is the correct way to create a new element at the end of the list, without modifying existing elements. Are you sure you're describing the problem accurately - if so, then somewhere you must be looping over the ArrayList and updating each value to the same one, which should be quite noticeable. In any case, your problem lies outside the code you've posted; take a careful look at what you're calling on the list. – Andrzej Doyle Oct 19 '11 at 16:54
I added the new NameSurferEntry to hopefully create a new object that would go in the arraylist. – megisto Oct 19 '11 at 16:54
show 1 more comment

3 Answers

You're creating a new NameSurferEntry which you on the next line overwrite with a value from your database. If the returned entry is always the same your arraylist will only contain references to the same object.

NameSurferEntry entry = new NameSurferEntry();
entry = db.findEntry(name);

What you should consider is trying to achieve immutability in your objects and/or perform defensive copying. For simple properties it's enough to declare them final, but for complex elements you would typically need to copy the object by creating it anew.

The following sample should work for you, given that you implement the copy constructor

NameSurferEntry copy = new NameSurferEntry(db.findEntry(name));
share|improve this answer
I tried adding that before before but db.findEntry() returns a NameSurferEntry object not a string which is required for the constructor. – megisto Oct 19 '11 at 17:08
@megisto, you have to implement such a constructor, or implement some other way to copy the properties from one object to another. – Johan Sjöberg Oct 19 '11 at 17:11

This means that db.findEntry always returns the same NameSurferEntry instance, and just replaces the name inside it with the name it receives as argument.

Adding an object to an list only adds a reference to the object in the list. It doesn't clone the object to store a copy of it in the list.

BTW, why are you creating a new NameSurferEntry and assign it to the entry variable if it's just to overwrite it with the result of db.findEntry afterwards?

share|improve this answer

Whatever this is:

entry = db.findEntry(name);

contains and returns one object, and you're changing whatever it contains.

To be more clear: You're adding the same reference to your list over and over, and changing the contents of the single object that reference points at.

share|improve this answer
That's what I thought so I was trying to add a "new" NameSurferEntry. I don't know how to add a new object to the ArrayList. – megisto Oct 19 '11 at 17:02

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.