Lets say I have many bean properties like this:
<property name="posture">
<list>
<value>Lordosis</value>
<value>Kyphosis</value>
<value>Flat-Back</value>
<value>Sway-Back</value>
<value>Scoliosis</value>
</list>
</property>
After initialization of this bean. How would you go about grabbing information on these properties? For example, the length of the list within each property?