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; /* ww w . j a va2 s .c om*/ abstract public class StateSkeleton implements State { private final StateMachine mStateMachine; public StateSkeleton(StateMachine stateMachine) { super(); mStateMachine = stateMachine; } @Override public void onEnter() { } @Override public void onExit() { } public StateMachine getStateMachine() { return mStateMachine; } }