I have an object which I add to a List using the method theList.add(theObj).
If I now make changes to this object theObj, will these changes always be reflected in the object stored in the list?
If yes, does this mean that List in java stores only references and not unique copies of the objects it is passed?