Back to project page C2Framework.
The source code is released under:
Apache License
If you think the Android project C2Framework 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 gaia.c2.context.view; /*from w w w . ja v a 2 s . co m*/ import android.support.v4.app.Fragment; import gaia.c2.context.C2Context; /** * Created by kmr on 4/7/14. */ public abstract class C2View { protected C2Context context; protected Fragment fragment; public abstract void handleMessage(C2Message result); public void onShow() {} public void onHide() {} public Fragment getFragment() { return fragment; } public C2Context getContext() { return context; } }