_callNotes = callLog.getNotes();
_callStatus = callLog.getStatus();
// Process more fields only if the callLog is instance of PhoneCallLog class (it might be ConferencePhoneCallLog).
if (callLog.getClass() == PhoneCallLog.class) {
final PhoneCallLog phoneCallLog = (PhoneCallLog) callLog;
_callType = phoneCallLog.getType();
final PhoneCallLogID logID = phoneCallLog.getParticipant();
if (logID != null) {
_name = logID.getName();
_number = logID.getNumber();
_addressBookNumber = logID.getAddressBookFormattedNumber();
_addressBookType = logID.getType();