List children = et.getChildren();
if (children == null || l.size()<1) {
throw new WSIFException("no ComplexType children on elementType: " + et);
}
ComplexType ct = (ComplexType) children.get(0);
SequenceElement[] se = ct.getSequenceElements();
if (se == null) {
throw new WSIFException("no sequence elements found on: " + ct);
}
ArrayList unWrappedParts = new ArrayList();