public interface ICustomInterceptApkListener extends IInterface {
String DESCRIPTOR = "com.custom.app.sun.ICustomInterceptApkListener";
void requestIntercept(Intent var1) throws RemoteException;
public abstract static class Stub extends Binder implements ICustomInterceptApkListener {
public Stub() {
throw new RuntimeException("Stub!");
}
public static ICustomInterceptApkListener asInterface(IBinder obj) {
throw new RuntimeException("Stub!");
}
public IBinder asBinder() {
throw new RuntimeException("Stub!");
}
public boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
throw new RuntimeException("Stub!");
}
}
public static class Default implements ICustomInterceptApkListener{
public Default() {
throw new RuntimeException("Stub!");
}
public void requestIntercept(Intent intent) throws RemoteException {
throw new RuntimeException("Stub!");
}
public IBinder asBinder() {
throw new RuntimeException("Stub!");
}
}
}
网友评论