SetValueProfileSelector selector = new SetValueProfileSelectorImpl(this, nodeData.getIdref(), nodeData.getStringValue());
result.add(selector);
} else if (ProfileSetComplexValueType.type.isAssignableFrom(xmlObject.schemaType())) {
ProfileSetComplexValueType nodeData = (ProfileSetComplexValueType)xmlObject;
SetComplexValueProfileSelector selector = new SetComplexValueProfileSelectorImpl(this, nodeData.getIdref(), nodeData.getItemList());
result.add(selector);
}
} while (cursor.toNextSibling());
return result;
}