Uses of Interface
org.glassfish.pfl.basic.fsm.Guard
-
Packages that use Guard Package Description org.glassfish.pfl.basic.fsm -
-
Uses of Guard in org.glassfish.pfl.basic.fsm
Classes in org.glassfish.pfl.basic.fsm that implement Guard Modifier and Type Class Description static class
Guard.Base
Fields in org.glassfish.pfl.basic.fsm declared as Guard Modifier and Type Field Description private Guard
Transition. guard
private static Guard
Transition. trueGuard
Methods in org.glassfish.pfl.basic.fsm that return Guard Modifier and Type Method Description Guard
Transition. getGuard()
static Guard
Guard.Base. makeGuard(Guard.Base.Predicate pred)
Methods in org.glassfish.pfl.basic.fsm with parameters of type Guard Modifier and Type Method Description StateEngine
StateEngine. add(State oldState, java.util.Set<Input> input, Guard guard, Action action, State newState)
Repeatedly calls add( State, Input, Guard, Action, State ) for each element of input.StateEngine
StateEngine. add(State oldState, Input input, Guard guard, Action action, State newState)
Add a new transition (old,in,guard,act,new) to the state engine.Constructors in org.glassfish.pfl.basic.fsm with parameters of type Guard Constructor Description Transition(Guard guard, Action action, State nextState)
-