You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by Ted Husted <hu...@apache.org> on 2001/06/01 22:55:17 UTC

Re: String indexed bean fields

So, would this then give us access to things like RowSet objects which
have accessors like getString(1) ?

"Craig R. McClanahan" wrote:
> Yep.  Something like this is part of the enhancements I see in Struts 1.1.

> On Wed, 30 May 2001, Rapheal Kaplan wrote:
> >       Has anyone thought about allowing for string based indexed fields (even
> > though they do not fit in to the Java spec)?
> >       For example:
> >       <logic:write name="user" property="email{home}"/>
> >               would call:
> >       user.getEmail( "home" );
> >               - Rapheal Kaplan