blob: 9f14f368dc1b24385378af4d57e13ea9352b86b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package bjc.pratt.commands;
import bjc.pratt.ParserContext;
/**
* A 'meta-command' that yields the actual command to use.
*
* @author bjculkin
*
*/
public interface MetaInitialCommand<K, V, C> {
InitialCommand<K, V, C> getCommand(ParserContext<K, V, C> ctx);
}
|