* @param vcard
* @throws VCardParseException
*/
private void parseFnType(String group, String value, List<ParameterType> paramTypeList, VCardImpl vcard) throws VCardParseException {
try {
FNType fnType = new FNType();
parseParamTypes(fnType, paramTypeList, value, VCardTypeName.FN);
if(fnType.isQuotedPrintable()) {
value = decodeQuotedPrintableValue(fnType, value);
}
fnType.setFormattedName(VCardUtils.unescapeString(value));
if(group != null) {
fnType.setGroup(group);
}
vcard.setFN(fnType);
}
catch(Exception ex) {