KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > persistence > antlr > collections > ASTEnumeration


1 package persistence.antlr.collections;
2
3 /* ANTLR Translator Generator
4  * Project led by Terence Parr at http://www.jGuru.com
5  * Software rights: http://www.antlr.org/license.html
6  *
7  */

8
9 public interface ASTEnumeration {
10     public boolean hasMoreNodes();
11
12     public AST nextNode();
13 }
14
Popular Tags