54 lines
2.0 KiB
Java
54 lines
2.0 KiB
Java
package android.support.v4.app;
|
|
|
|
import android.app.Notification;
|
|
import android.os.Binder;
|
|
import android.os.IBinder;
|
|
import android.os.IInterface;
|
|
import android.os.Parcel;
|
|
import android.os.RemoteException;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface INotificationSideChannel extends IInterface {
|
|
|
|
public static abstract class Stub extends Binder implements INotificationSideChannel {
|
|
public Stub() {
|
|
attachInterface(this, "android.support.v4.app.INotificationSideChannel");
|
|
}
|
|
|
|
@Override // android.os.IInterface
|
|
public IBinder asBinder() {
|
|
return this;
|
|
}
|
|
|
|
@Override // android.os.Binder
|
|
public boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
|
|
if (i == 1) {
|
|
parcel.enforceInterface("android.support.v4.app.INotificationSideChannel");
|
|
a(parcel.readString(), parcel.readInt(), parcel.readString(), parcel.readInt() != 0 ? (Notification) Notification.CREATOR.createFromParcel(parcel) : null);
|
|
return true;
|
|
}
|
|
if (i == 2) {
|
|
parcel.enforceInterface("android.support.v4.app.INotificationSideChannel");
|
|
a(parcel.readString(), parcel.readInt(), parcel.readString());
|
|
return true;
|
|
}
|
|
if (i == 3) {
|
|
parcel.enforceInterface("android.support.v4.app.INotificationSideChannel");
|
|
a(parcel.readString());
|
|
return true;
|
|
}
|
|
if (i != 1598968902) {
|
|
return super.onTransact(i, parcel, parcel2, i2);
|
|
}
|
|
parcel2.writeString("android.support.v4.app.INotificationSideChannel");
|
|
return true;
|
|
}
|
|
}
|
|
|
|
void a(String str) throws RemoteException;
|
|
|
|
void a(String str, int i, String str2) throws RemoteException;
|
|
|
|
void a(String str, int i, String str2, Notification notification) throws RemoteException;
|
|
}
|