DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12520>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12520

Generated code for WSDL should not break object encapsulation

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From [EMAIL PROTECTED]  2002-09-20 18:21 -------
I disagree - I think standard programming practice is not this:

   // Gee, I hope this guy clone()s this object...
   obj.setField(someObjectIDontWantYouToTouch)

it's this:

   // Safety first, officer!
   Object arg = someObjectIDontWantYouToTouch.clone();
   obj.setField(arg);

Reply via email to