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 a v a2s .com import android.content.Context; import android.content.Intent; import android.util.Log; import org.robospring.ext.aop.MyClass; import org.springframework.beans.factory.annotation.Autowired; public class MyBroadcastReceiver extends RoboSpringBroadcastReceiver { private static final String TAG = MyBroadcastReceiver.class.getName(); @Autowired private MyClass myClass; @Override public void onReceive(Context context, Intent intent) { Log.e(TAG, "onReceive " + myClass.ae(context)); } }