f = it.get(3);
assertEquals("X-LONG-STRING", f.getExtendedName());
assertEquals("1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890", f.getExtendedValue());
}
VCardImpl vcard2 = (VCardImpl)vcard;
if(vcard2.hasErrors()) {
List<VCardError> errors = vcard2.getErrors();
for(int j = 0; j < errors.size(); j++) {
System.out.println(errors.get(j).getErrorMessage());
System.out.println(errors.get(j).getSeverity());
System.out.println(StringUtil.formatException(errors.get(j).getError()));
}