Re: [jibx-users] How to map array of objects

2005-07-10 Thread Dennis Sosnoski
Hi Kumar, You can use the org.jibx.extras.TypedArrayMapper class in the RC0 code, or use the current CVS code which supports using arrays directly as s. Using the array directly you can just define the XML representation for the objects in the array with a nested element inside the . - De

[jibx-users] How to map array of objects

2005-07-01 Thread Kumar
Hi All, I have below simple class Customer.java - import java.util.*; public class Customer1 { Order[] orderArray = null; public void setOrderArray(Order[] orderArray) { this.orderArray = orderArray; } public Order[] getOrderArray() {