ContactParser
223224225226227228229230231232233234235
return null; } String content = fixTag(record.getUid()); ContactParser parser = ParserFactory.getParserInstance(list, contact, modify); parser.parseContact(content); contact.commit(); String uid = contact.getString(BlackBerryContact.UID, 0);
571572573574575576577578579580581
Dialog.inform("BlackBerryContact is null."); return null; } ContactParser parser = ParserFactory.getParserInstance((BlackBerryContactList)list, contact, true); String data = parser.toString(contact); return data; }