Back to project page android-mvc-framework.
The source code is released under:
Apache License
If you think the Android project android-mvc-framework 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 com.android_mvc.framework.controller; /*w w w .j av a2 s . c o m*/ import android.app.Activity; import com.android_mvc.framework.controller.routing.RoutingTable; /** * ??????????????? * @author id:language_and_engineering * */ public class BaseController { // NOTE: MVC?????????????????????? // ???????????????????????BL????????????????????????????????????? // ?????????????????????????????? // ???????????????????? // @see http://d.hatena.ne.jp/language_and_engineering/20120213/p1 // NOTE: ???????????????????????????????????? // ?????????????????????????????????????? // ????????????????????static???OK????????????????????????????? // IDEA: ????????????????????????????????????????????????????????? // BL?????????????????????????????????????????? protected static final RoutingTable STAY_THIS_PAGE_ALWAYS = null; protected static final Class<? extends Activity> STAY_THIS_PAGE = null; }