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

io.microlam.hsm.State Maven / Gradle / Ivy

package io.microlam.hsm;

public interface State extends Action {

	Hsm getHsm();
	
	State initState(C context);

	String getName();
	
	State getParentState();
	
	State getChildInitialState();

	boolean isDescendentOf(String name);

	EntryExitAction getEntryAction();
	
	Action getInnerAction();

	EntryExitAction getExitAction();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy