FileDocCategorySizeDatePackage
IntentService.javaAPI DocAndroid 5.1 API806Sat Mar 14 14:09:42 GMT 2015android.app

IntentService.java

package android.app;
public abstract class IntentService
  extends android.app.Service
{
public  IntentService(java.lang.String name) { throw new RuntimeException("Stub!"); }
public  void setIntentRedelivery(boolean enabled) { throw new RuntimeException("Stub!"); }
public  void onCreate() { throw new RuntimeException("Stub!"); }
public  void onStart(android.content.Intent intent, int startId) { throw new RuntimeException("Stub!"); }
public  int onStartCommand(android.content.Intent intent, int flags, int startId) { throw new RuntimeException("Stub!"); }
public  void onDestroy() { throw new RuntimeException("Stub!"); }
public  android.os.IBinder onBind(android.content.Intent intent) { throw new RuntimeException("Stub!"); }
protected abstract  void onHandleIntent(android.content.Intent intent);
}