} else if (mapping instanceof XMLCompositeObjectMapping) {
processXMLCompositeMapping((XMLCompositeObjectMapping) mapping, seq, ct, schemaForNamespace, workingSchema, properties, descriptors, false);
} else if (mapping instanceof XMLCompositeCollectionMapping) {
processXMLCompositeMapping((XMLCompositeCollectionMapping) mapping, seq, ct, schemaForNamespace, workingSchema, properties, descriptors, true);
} else if (mapping instanceof XMLAnyAttributeMapping) {
AnyAttribute anyAttribute = new AnyAttribute();
anyAttribute.setProcessContents(AnyAttribute.LAX);
ct.setAnyAttribute(anyAttribute);
} else if (mapping instanceof XMLAnyObjectMapping) {
processAnyMapping(seq, false);
} else if (mapping instanceof XMLAnyCollectionMapping) {
processAnyMapping(seq, true);