On 9/7/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote:

> I kind of assume this isn't possible based on what I've seen, but figured
> I'd ask none the less...
> 
> Is it possible with BeanUtils (or otherwise) to create a new array as a
> member of a bean?  What I mean is, if I have this bean:
> 
> class myBean {
>   private String[] myArray;
> }
> 
> Can I do the equivalent of this:
> 
> class mainClass {
>   myBean b = new myBean();
>   b.myArray = new String[5];
> }
> 
> Obviously that's not valid, but pretend it would work, I need to write
> *real* code that *will* work to do the equivalent of that.  I haven't seen
> anything in BeanUtils that would do it, hoping I'm missing something.

Could you perhaps explain what is the problem with the above ? Perhaps
you could provide some (pseudo, hypothetical) code using BeanUtils
that shows how you would do what you want to do ?

Tom

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

Reply via email to