KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > antlr > ASTVisitor


1 package antlr;
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/ASTVisitor.java#4 $
8  */

9
10 import antlr.collections.AST;
11
12 public interface ASTVisitor {
13     public void visit(AST node);
14 }
15
Popular Tags