From: <bc...@wo...> - 2000-12-25 00:37:32
|
[Robert W. Bill] >Also, is it known why the posted example crashes if I use >"self.username" as an instance variable instead of the current >"self.usrname"? I'll have time next week to find out, just curious if ppl >already knew so I could save some time. It is because the getUsername / setUsername methods creates a bean property called "username". Reading or writing to this beanproperty (which is done in the set/get methods) will call the set/get methods again. The good news are that it is easy to work around (as you did) and you'll recognize it immediately the next time it happen. regards, finn |