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);
}
db.findEntry()method. The fact that you create a newNameSurferEntrythen immediately overwrite it is also unusual. – Dave Newton Oct 19 '11 at 16:52new NameSurferEntryas soon as you create it, which is very suspicious. How doesfindEntrywork? What does it return? – Mat Oct 19 '11 at 16:52entryArrayis anArrayList<NameSurferEntry>, then calling theaddmethod 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