diff options
Diffstat (limited to 'JPratt/src/main/java/bjc/pratt/commands/MetaNonInitialCommand.java')
| -rw-r--r-- | JPratt/src/main/java/bjc/pratt/commands/MetaNonInitialCommand.java | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/JPratt/src/main/java/bjc/pratt/commands/MetaNonInitialCommand.java b/JPratt/src/main/java/bjc/pratt/commands/MetaNonInitialCommand.java index 9d09eef..956dcec 100644 --- a/JPratt/src/main/java/bjc/pratt/commands/MetaNonInitialCommand.java +++ b/JPratt/src/main/java/bjc/pratt/commands/MetaNonInitialCommand.java @@ -8,14 +8,21 @@ import bjc.pratt.ParserContext; * @author bjculkin * * @param <K> - * The token key type. + * The token key type. * * @param <V> - * The token value type. + * The token value type. * * @param <C> - * The parser state type. + * The parser state type. */ public interface MetaNonInitialCommand<K, V, C> { + /** + * Get the command to use. + * + * @param ctx + * The context to use. + * @return The command to use. + */ NonInitialCommand<K, V, C> getCommand(ParserContext<K, V, C> ctx); } |
