All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy