if you want to make an object immutable there are two things
1. there must be no method which chage the object

2. the class should be made final
otherwise you can derive from that class and change the object

so object is NOT immutable
all the time we change Objects dont we?
------------------
KS