ObjectList nextList = list;
if (!MString.isEmpty(element.group())) {
nextList = findGroupList(element, list);
}
FObject next = createModelObjectFromXml(xmlElement,target, nextList);
if (next != null && element.sort() >= 0)
next.setSortId(element.sort());
else
if (next != null && idx != null)
next.setSortId(idx.value());
}
}
}
}