Title: Mapping multiple XML elements into a single Array

How do I map multiple elements into an array.
E.g.
<root>
  <property1>a</property1>
  <property2>a</property2>
  <property3>a</property3>
  <property4>a</property4>
  <property5>a</property5>
  <property6>a</property6>
</root>

The class have a field "properties" as a String array.

Can I map all the properties element into the String array?


Thanks

Balaji

Reply via email to