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. ja va 2 s . co m*/ public interface StateMachine { void switchToState(State newState); void revertToPreviousState(); void setGlobalState(State state); State getCurrentState(); State getGlobalState(); boolean isInState(State state); boolean handleEvent(StateEvent event); }