Re: [SANDBOX][BEANUTILS2] Property expressions

2014-05-20 Thread Yogesh Rao
--- Original message From: Benedikt Ritter < > brit...@apache.org> Date:05/02/2014 12:59 (GMT-05:00) > To: Commons Developers List > Subject: Re: [SANDBOX][BEANUTILS2] Property expressions > > So you're saying we should leave this out of BU2? > > > 2014-05-02

Re: [SANDBOX][BEANUTILS2] Property expressions

2014-05-02 Thread Gary Gregory
Nah, I'm just talking around the water cooler,  thinking aloud... Gary Original message From: Benedikt Ritter Date:05/02/2014 12:59 (GMT-05:00) To: Commons Developers List Subject: Re: [SANDBOX][BEANUTILS2] Property expressions So you're saying we should leav

Re: [SANDBOX][BEANUTILS2] Property expressions

2014-05-02 Thread Benedikt Ritter
mmons Developers List > Subject: [SANDBOX][BEANUTILS2] Property expressions > Hi all, > > one of the goal of BeanUtils2 is to provide the same functionality as > BeanUtils1. In BeanUtils1 you can do something like this: > > BeanUtils.getProperty(person, "

RE: [SANDBOX][BEANUTILS2] Property expressions

2014-05-02 Thread Gary Gregory
There is also our own jxpath. Gary Original message From: Benedikt Ritter Date:05/02/2014 06:40 (GMT-05:00) To: Commons Developers List Subject: [SANDBOX][BEANUTILS2] Property expressions Hi all, one of the goal of BeanUtils2 is to provide the same functionality as

[SANDBOX][BEANUTILS2] Property expressions

2014-05-02 Thread Benedikt Ritter
Hi all, one of the goal of BeanUtils2 is to provide the same functionality as BeanUtils1. In BeanUtils1 you can do something like this: BeanUtils.getProperty(person, "address.city.zipCode"); This would be translated into: person.getAddress().getCity().getZipCode(); The same can be done with ma