
com.arellomobile.anlib.inject.IIntentServiceInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anlib Show documentation
Show all versions of anlib Show documentation
Arello-Mobile library for Android
The newest version!
package com.arellomobile.anlib.inject;
import android.app.IntentService;
import android.content.Intent;
public interface IIntentServiceInjector extends IServiceInjector
{
void intentServiceHandleIntent(Intent intent);
public static class BaseIntentServiceInjector extends BaseServiceInjector implements IIntentServiceInjector
{
public BaseIntentServiceInjector(IntentService service)
{
super(service);
}
public IntentService getIntentService()
{
return (IntentService) super.getService();
}
@Override
public void intentServiceHandleIntent(Intent intent)
{
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy