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

android.location.IGnssNavigationMessageListener 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.location;


public interface IGnssNavigationMessageListener extends android.os.IInterface {
    void onGnssNavigationMessageReceived(android.location.GnssNavigationMessage gnssNavigationMessage) throws android.os.RemoteException;

    void onStatusChanged(int i) throws android.os.RemoteException;

    static abstract class Stub extends android.os.Binder implements android.location.IGnssNavigationMessageListener {
        private static final java.lang.String DESCRIPTOR = "android.location.IGnssNavigationMessageListener";
        static final int TRANSACTION_onGnssNavigationMessageReceived = 1;
        static final int TRANSACTION_onStatusChanged = 2;

        public Stub() {
            throw new RuntimeException("Stub!");
        }

        public static android.location.IGnssNavigationMessageListener asInterface(android.os.IBinder obj) {
            throw new RuntimeException("Stub!");
        }

        public android.os.IBinder asBinder() {
            throw new RuntimeException("Stub!");
        }

        public static java.lang.String getDefaultTransactionName(int transactionCode) {
            throw new RuntimeException("Stub!");
        }

        public java.lang.String getTransactionName(int transactionCode) {
            throw new RuntimeException("Stub!");
        }

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

        public static boolean setDefaultImpl(android.location.IGnssNavigationMessageListener impl) {
            throw new RuntimeException("Stub!");
        }

        public static android.location.IGnssNavigationMessageListener getDefaultImpl() {
            throw new RuntimeException("Stub!");
        }

        private static class Proxy implements android.location.IGnssNavigationMessageListener {
            private android.os.IBinder mRemote;
            public static android.location.IGnssNavigationMessageListener sDefaultImpl;

            Proxy(android.os.IBinder remote) {
                throw new RuntimeException("Stub!");
            }

            public android.os.IBinder asBinder() {
                throw new RuntimeException("Stub!");
            }

            public java.lang.String getInterfaceDescriptor() {
                throw new RuntimeException("Stub!");
            }

            public void onGnssNavigationMessageReceived(android.location.GnssNavigationMessage event) throws android.os.RemoteException {
                throw new RuntimeException("Stub!");
            }

            public void onStatusChanged(int status) throws android.os.RemoteException {
                throw new RuntimeException("Stub!");
            }
        }
    }

    static class Default implements android.location.IGnssNavigationMessageListener {
        public Default() {
            throw new RuntimeException("Stub!");
        }

        public void onGnssNavigationMessageReceived(android.location.GnssNavigationMessage event) throws android.os.RemoteException {
            throw new RuntimeException("Stub!");
        }

        public void onStatusChanged(int status) throws android.os.RemoteException {
            throw new RuntimeException("Stub!");
        }

        public android.os.IBinder asBinder() {
            throw new RuntimeException("Stub!");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy