Hi, I couldnt find this in the doc. How would one declare list or arrays in the bean declaration using the p notation. For example I'm currently doing something like this:

p:size="4"
p:weight="55">
<property name="kids">
<list>
<value>john</value>
<value>susie</value>
</list>
</property>
</bean>

because this doesnt work: p:kids="john,susie"

Is there a way to use the p shortcut with lists? thanks