Riyaz,

Thank you for reporting this.  I believe I will get a chance to work
on this tonight.

Hubert

On 5/22/05, Riyaz Mansoor <[EMAIL PROTECTED]> wrote:
> 
> Line : BeanUtils.copyProperties(prop, baseFpc) does not copy the
> arbitrary properties contained in the baseFpc's FormPropertyConfigs
> 
>     throwIfConfigured();
> 
>     // Inherit form property configs
>     FormPropertyConfig[] baseFpcs = config.findFormPropertyConfigs();
>     for (int i = 0; i < baseFpcs.length; i++) {
>         FormPropertyConfig baseFpc = baseFpcs[i];
> 
>         // Do we have this prop?
>         FormPropertyConfig prop =
>                 this.findFormPropertyConfig(baseFpc.getName());
> 
>         if (prop == null) {
> 
>             // We don't have this, so let's copy it
>             prop = (FormPropertyConfig) RequestUtils
>                      .applicationInstance(baseFpc.getClass().getName());
> 
>             BeanUtils.copyProperties(prop, baseFpc);
>             this.addFormPropertyConfig(prop);
>         }
> 
>     }
> 
>

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

Reply via email to