1 package persistence.antlr.collections;2 3 /* ANTLR Translator Generator4 * Project led by Terence Parr at http://www.jGuru.com5 * Software rights: http://www.antlr.org/license.html6 *7 */8 9 public interface ASTEnumeration {10 public boolean hasMoreNodes();11 12 public AST nextNode();13 }14