Hi there,

Has anyone ever encountered this problem using the List's set method?

For example:

List<MyItems> list = new Vector<MyItems>();
...then you populate the list using a few
   list.add(new MyItems(xxx));

When you do, list.get(some index) it returns the item.
But when you do list.set(some index, new MyItems(xxx))
then do list.get(same index), it returns null.

- Owen

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to