FileDocCategorySizeDatePackage
IccPhoneBookInterfaceManagerProxy.javaAPI DocAndroid 5.1 API2296Thu Mar 12 22:22:54 GMT 2015com.android.internal.telephony

IccPhoneBookInterfaceManagerProxy

public class IccPhoneBookInterfaceManagerProxy extends Object
SimPhoneBookInterfaceManager to provide an inter-process communication to access ADN-like SIM records.

Fields Summary
private IccPhoneBookInterfaceManager
mIccPhoneBookInterfaceManager
Constructors Summary
public IccPhoneBookInterfaceManagerProxy(IccPhoneBookInterfaceManager iccPhoneBookInterfaceManager)

        mIccPhoneBookInterfaceManager = iccPhoneBookInterfaceManager;
    
Methods Summary
public java.util.ListgetAdnRecordsInEf(int efid)

        return mIccPhoneBookInterfaceManager.getAdnRecordsInEf(efid);
    
public int[]getAdnRecordsSize(int efid)

        return mIccPhoneBookInterfaceManager.getAdnRecordsSize(efid);
    
public voidsetmIccPhoneBookInterfaceManager(IccPhoneBookInterfaceManager iccPhoneBookInterfaceManager)

        mIccPhoneBookInterfaceManager = iccPhoneBookInterfaceManager;
    
public booleanupdateAdnRecordsInEfByIndex(int efid, java.lang.String newTag, java.lang.String newPhoneNumber, int index, java.lang.String pin2)

        return mIccPhoneBookInterfaceManager.updateAdnRecordsInEfByIndex(efid,
                newTag, newPhoneNumber, index, pin2);
    
public booleanupdateAdnRecordsInEfBySearch(int efid, java.lang.String oldTag, java.lang.String oldPhoneNumber, java.lang.String newTag, java.lang.String newPhoneNumber, java.lang.String pin2)

        return mIccPhoneBookInterfaceManager.updateAdnRecordsInEfBySearch(
                efid, oldTag, oldPhoneNumber, newTag, newPhoneNumber, pin2);