return updated;
}
protected Object buildObjectNoReferenceDescriptor(DOMRecord record, AbstractSession session, Node next, Object container, ContainerPolicy cp) {
XMLConverter converter = ((XMLAnyCollectionMapping) this).getConverter();
XMLPlatformFactory.getInstance().getXMLPlatform().namespaceQualifyFragment((Element) next);
Object objectValue = next;
if (converter != null) {
objectValue = converter.convertDataValueToObjectValue(objectValue, session, record.getUnmarshaller());
}
cp.addInto(objectValue, container, session);
return objectValue;
}