-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Richard,

Richard Sayre wrote:
> I have a form that can have 1 to many 'Name'  text fields.  In struts
> 2 how do I set up the action so it can automatically grab the values
> that are in those fields?
> 
> If I had 1 name field I would just put a name variable in the Action
> Class and create a setter and getter for it.  How do I do this with
> multiple names?

You do the same thing, but use an array of String objects as the data type:

private String[] _name;
public void setName(String[] name) { _name = name }
public String[] getName() { return _name; }

- -chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGrJKP9CaO5/Lv0PARAvTnAJ4mWls7/Ms5RbKcBo1OIz0RXUWvkQCbBz69
Mfp7JuBYAwLCmLNNK+NTtR0=
=JmcI
-----END PGP SIGNATURE-----

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

Reply via email to