android.telephony.ICellInfoCallback 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.telephony;
public interface ICellInfoCallback extends android.os.IInterface {
void onCellInfo(java.util.List state) throws android.os.RemoteException;
void onError(int errorCode, java.lang.String exceptionName, java.lang.String message) throws android.os.RemoteException;
static class Default implements android.telephony.ICellInfoCallback {
public Default() { /* compiled code */ }
public void onCellInfo(java.util.List state) throws android.os.RemoteException {
throw new IllegalStateException("STUB");
}
public void onError(int errorCode, java.lang.String exceptionName, java.lang.String message) throws android.os.RemoteException {
throw new IllegalStateException("STUB");
}
public android.os.IBinder asBinder() {
throw new IllegalStateException("STUB");
}
}
static abstract class Stub extends android.os.Binder implements android.telephony.ICellInfoCallback {
static final int TRANSACTION_onCellInfo = 1;
static final int TRANSACTION_onError = 2;
public Stub() { /* compiled code */ }
public static android.telephony.ICellInfoCallback asInterface(android.os.IBinder obj) {
throw new IllegalStateException("STUB");
}
public android.os.IBinder asBinder() {
throw new IllegalStateException("STUB");
}
public static java.lang.String getDefaultTransactionName(int transactionCode) {
throw new IllegalStateException("STUB");
}
public java.lang.String getTransactionName(int transactionCode) {
throw new IllegalStateException("STUB");
}
public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException {
throw new IllegalStateException("STUB");
}
public static boolean setDefaultImpl(android.telephony.ICellInfoCallback impl) {
throw new IllegalStateException("STUB");
}
public static android.telephony.ICellInfoCallback getDefaultImpl() {
throw new IllegalStateException("STUB");
}
private static class Proxy implements android.telephony.ICellInfoCallback {
public static android.telephony.ICellInfoCallback sDefaultImpl;
Proxy(android.os.IBinder remote) {
throw new IllegalStateException("STUB");
}
public android.os.IBinder asBinder() {
throw new IllegalStateException("STUB");
}
public java.lang.String getInterfaceDescriptor() {
throw new IllegalStateException("STUB");
}
public void onCellInfo(java.util.List state) throws android.os.RemoteException {
throw new IllegalStateException("STUB");
}
public void onError(int errorCode, java.lang.String exceptionName, java.lang.String message) throws android.os.RemoteException {
throw new IllegalStateException("STUB");
}
}
}
}