Back to project page RoboSpringExt.
The source code is released under:
Apache License
If you think the Android project RoboSpringExt listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.robospring.ext; // w w w. ja v a 2 s . co m import android.app.IntentService; import org.robospring.RoboSpring; public abstract class RoboSpringIntentService extends IntentService { /** * Creates an IntentService. Invoked by your subclass's constructor. * * @param name Used to name the worker thread, important only for debugging. */ public RoboSpringIntentService(String name) { super(name); RoboSpring.autowire(this); } }