Back to project page khandroid.
The source code is released under:
Apache License
If you think the Android project khandroid 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.github.khandroid.state_app; /*from w w w . ja va2s.c o m*/ abstract public class SkeletonAppState implements AppState { public SkeletonAppState() { super(); } @Override public void onEnter(AppStateContext context) { } @Override public void onExit() { } }