android.location.IGnssNavigationMessageListener Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
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!");
}
}
}