How can I instruct JAXB to process this ?
XML
Try this
@XmlRootElement class Root { List allChildren = new ArrayList(); private static class Parent { @XmlElement Child child; } @XmlElement public void setParent(Parent p) { allChildren.add(p.child); } }