result = new PropertyDateTimeImpl(property.getPropertyDefinitionId(),
convertXMLCalendar(((CmisPropertyDateTime) property).getValue()));
} else if (property instanceof CmisPropertyHtml) {
result = new PropertyHtmlImpl(property.getPropertyDefinitionId(), ((CmisPropertyHtml) property).getValue());
} else if (property instanceof CmisPropertyUri) {
result = new PropertyUriImpl(property.getPropertyDefinitionId(), ((CmisPropertyUri) property).getValue());
} else {
return null;
}
((AbstractPropertyData<?>) result).setLocalName(property.getLocalName());