13
Phonebook Access
Sample of code for calling of ‘getRecord(int index)’ method:
int index = 1;
receivedRecord.getRecord(1);
Sample of code for calling of ‘getUsedRecords()’ method:
int usedRecs = RecentCallReceived.getUsedRecords();
Sample of code for calling of ‘getNumberRecords()’ method:
int numberRecs = RecentCallReceived.getNumberRecords();
Sample of code for calling of ‘getMaxNameLength()’ method:
int maxNameLength = RecentCallReceived.getMaxNameLength();
Sample of code for calling of ‘getMaxTelNoLength()’ method:
int maxTelNoLength = RecentCallReceived.getMaxTelNoLength();
77