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.
/** * Created on 14.08.2012/* www .j a va 2s . c om*/ * * 2012 Daniel Thommes */ package org.robospring.ext.aop; import android.content.Context; import org.springframework.beans.factory.annotation.Autowired; public class BusinessLogicImpl implements BusinessLogic { private MyBusinessLogicImpl myBusinessLogic; @Override public String doBusiness(Context context) { return "BusinessLogicImpl"; } @Override public String doOtherBusiness(Context context) { return "BusinessLogicImpl " + myBusinessLogic.doOtherBusiness(context); } @Autowired public void setMyBusinessLogicImpl(MyBusinessLogicImpl myBusinessLogicImpl) { myBusinessLogic = myBusinessLogicImpl; } }