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
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() {