> -----Original Message-----
> From: Michael McGrady [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 06, 2004 2:28 PM
> To: Struts Users Mailing List
> Subject: RE: GOING GOING GONE DYNAMIC
> 
> 
> At 02:15 PM 8/6/2004, you wrote:
> >Because java is NOT pass-by-reference, it's pass by value.. 
> the value it 
> >passes is a reference rather then pushing the entire object 
> on the stack.
> 
> 
> I am thinking the same as you.  Our semantics are different.  
> Why, given 
> this, should there be a problem?

Given this:
blah execute( ActionMapping map, ActionForm form, blah) {

Any kind of form = will not be reflected outside of the execute.

However any kind of
        form.setXXX( blah) 
or 
        BeanUtils.copyProperties( form, blah)

will work.




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to