public interface ContextStackProvider
is the interface to be implemented by an object put into DfaRun.clientData
when any of the actions in monq.jfa.ctx
package are used in a Nfa
.
To implement this interface, a class merely needs a field holding
a List
which it returns when getStack()
is called.
Modifier and Type | Method and Description |
---|---|
java.util.List<java.lang.Object> |
getStack()
returns the
List provided as a stack. |