com.cmt.statemachine.StateContext Maven / Gradle / Ivy
The newest version!
package com.cmt.statemachine;
/**
* StateContext
*
* @author Frank Zhang
* @date 2020-02-07 2:49 PM
*/
public interface StateContext {
/**
* Gets the transition.
*
* @return the transition
*/
Transition getTransition();
/**
* Gets the state machine.
*
* @return the state machine
*/
StateMachine getStateMachine();
}