All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.telephony.ICellInfoCallback Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.telephony;

public interface ICellInfoCallback extends android.os.IInterface {
    void onCellInfo(java.util.List state) throws android.os.RemoteException;

    void onError(int errorCode, java.lang.String exceptionName, java.lang.String message) throws android.os.RemoteException;

    static class Default implements android.telephony.ICellInfoCallback {
        public Default() { /* compiled code */ }

        public void onCellInfo(java.util.List state) throws android.os.RemoteException {
            throw new IllegalStateException("STUB");
        }

        public void onError(int errorCode, java.lang.String exceptionName, java.lang.String message) throws android.os.RemoteException {
            throw new IllegalStateException("STUB");
        }

        public android.os.IBinder asBinder() {
            throw new IllegalStateException("STUB");
        }
    }

    static abstract class Stub extends android.os.Binder implements android.telephony.ICellInfoCallback {
        static final int TRANSACTION_onCellInfo = 1;
        static final int TRANSACTION_onError = 2;

        public Stub() { /* compiled code */ }

        public static android.telephony.ICellInfoCallback asInterface(android.os.IBinder obj) {
            throw new IllegalStateException("STUB");
        }

        public android.os.IBinder asBinder() {
            throw new IllegalStateException("STUB");
        }

        public static java.lang.String getDefaultTransactionName(int transactionCode) {
            throw new IllegalStateException("STUB");
        }

        public java.lang.String getTransactionName(int transactionCode) {
            throw new IllegalStateException("STUB");
        }

        public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException {
            throw new IllegalStateException("STUB");
        }

        public static boolean setDefaultImpl(android.telephony.ICellInfoCallback impl) {
            throw new IllegalStateException("STUB");
        }

        public static android.telephony.ICellInfoCallback getDefaultImpl() {
            throw new IllegalStateException("STUB");
        }

        private static class Proxy implements android.telephony.ICellInfoCallback {
            public static android.telephony.ICellInfoCallback sDefaultImpl;

            Proxy(android.os.IBinder remote) {
                throw new IllegalStateException("STUB");
            }

            public android.os.IBinder asBinder() {
                throw new IllegalStateException("STUB");
            }

            public java.lang.String getInterfaceDescriptor() {
                throw new IllegalStateException("STUB");
            }

            public void onCellInfo(java.util.List state) throws android.os.RemoteException {
                throw new IllegalStateException("STUB");
            }

            public void onError(int errorCode, java.lang.String exceptionName, java.lang.String message) throws android.os.RemoteException {
                throw new IllegalStateException("STUB");
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy