Home | History | Annotate | Download | only in ast
      1 /*
      2  * Javassist, a Java-bytecode translator toolkit.
      3  * Copyright (C) 1999-2007 Shigeru Chiba. All Rights Reserved.
      4  *
      5  * The contents of this file are subject to the Mozilla Public License Version
      6  * 1.1 (the "License"); you may not use this file except in compliance with
      7  * the License.  Alternatively, the contents of this file may be used under
      8  * the terms of the GNU Lesser General Public License Version 2.1 or later.
      9  *
     10  * Software distributed under the License is distributed on an "AS IS" basis,
     11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
     12  * for the specific language governing rights and limitations under the
     13  * License.
     14  */
     15 
     16 package javassist.compiler.ast;
     17 
     18 import javassist.compiler.CompileError;
     19 
     20 /**
     21  * The visitor pattern.
     22  *
     23  * @see ast.ASTree#accept(Visitor)
     24  */
     25 public class Visitor {
     26     public void atASTList(ASTList n) throws CompileError {}
     27     public void atPair(Pair n) throws CompileError {}
     28 
     29     public void atFieldDecl(FieldDecl n) throws CompileError {}
     30     public void atMethodDecl(MethodDecl n) throws CompileError {}
     31     public void atStmnt(Stmnt n) throws CompileError {}
     32     public void atDeclarator(Declarator n) throws CompileError {}
     33 
     34     public void atAssignExpr(AssignExpr n) throws CompileError {}
     35     public void atCondExpr(CondExpr n) throws CompileError {}
     36     public void atBinExpr(BinExpr n) throws CompileError {}
     37     public void atExpr(Expr n) throws CompileError {}
     38     public void atCallExpr(CallExpr n) throws CompileError {}
     39     public void atCastExpr(CastExpr n) throws CompileError {}
     40     public void atInstanceOfExpr(InstanceOfExpr n) throws CompileError {}
     41     public void atNewExpr(NewExpr n) throws CompileError {}
     42 
     43     public void atSymbol(Symbol n) throws CompileError {}
     44     public void atMember(Member n) throws CompileError {}
     45     public void atVariable(Variable n) throws CompileError {}
     46     public void atKeyword(Keyword n) throws CompileError {}
     47     public void atStringL(StringL n) throws CompileError {}
     48     public void atIntConst(IntConst n) throws CompileError {}
     49     public void atDoubleConst(DoubleConst n) throws CompileError {}
     50     public void atArrayInit(ArrayInit n) throws CompileError {}
     51 }
     52