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. j av a2 s .co m*/ import android.content.BroadcastReceiver; import org.robospring.RoboSpring; public abstract class RoboSpringBroadcastReceiver extends BroadcastReceiver { public RoboSpringBroadcastReceiver() { RoboSpring.autowire(this); } }