package android.telecom;
public abstract class InCallService
extends android.app.Service
{
public InCallService() { throw new RuntimeException("Stub!"); }
public android.os.IBinder onBind(android.content.Intent intent) { throw new RuntimeException("Stub!"); }
public boolean onUnbind(android.content.Intent intent) { throw new RuntimeException("Stub!"); }
public android.telecom.Phone getPhone() { throw new RuntimeException("Stub!"); }
public void onPhoneCreated(android.telecom.Phone phone) { throw new RuntimeException("Stub!"); }
public void onPhoneDestroyed(android.telecom.Phone phone) { throw new RuntimeException("Stub!"); }
public static final java.lang.String SERVICE_INTERFACE = "android.telecom.InCallService";
}
|