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

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


import android.os.IBinder;

public interface IGnssMeasurementsListener extends android.os.IInterface {
    void onGnssMeasurementsReceived(android.location.GnssMeasurementsEvent gnssMeasurementsEvent) throws android.os.RemoteException;

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

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

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

        public static android.location.IGnssMeasurementsListener 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.IGnssMeasurementsListener impl) {
            throw new RuntimeException("Stub!");
        }

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

        private static class Proxy implements android.location.IGnssMeasurementsListener {
            private android.os.IBinder mRemote;
            public static android.location.IGnssMeasurementsListener 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 onGnssMeasurementsReceived(android.location.GnssMeasurementsEvent 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.IGnssMeasurementsListener {
        public Default() {
            throw new RuntimeException("Stub!");
        }

        public void onGnssMeasurementsReceived(android.location.GnssMeasurementsEvent event) throws android.os.RemoteException { /* compiled code */ }

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

        @Override
        public IBinder asBinder() {
            throw new RuntimeException("Stub!");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy