KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > antlr > collections > ASTEnumeration


1 package 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/RIGHTS.html
6  *
7  * $Id: //depot/code/org.antlr/main/main/antlr/collections/ASTEnumeration.java#4 $
8  */

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