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.
Thanks!
--
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]