01: package persistence.antlr.collections;
02:
03: /* ANTLR Translator Generator
04: * Project led by Terence Parr at http://www.jGuru.com
05: * Software rights: http://www.antlr.org/license.html
06: *
07: */
08:
09: public interface ASTEnumeration {
10: public boolean hasMoreNodes();
11:
12: public AST nextNode();
13: }
|