01: /*
02: * Javassist, a Java-bytecode translator toolkit.
03: * Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.
04: *
05: * The contents of this file are subject to the Mozilla Public License Version
06: * 1.1 (the "License"); you may not use this file except in compliance with
07: * the License. Alternatively, the contents of this file may be used under
08: * the terms of the GNU Lesser General Public License Version 2.1 or later.
09: *
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: }
28:
29: public void atPair(Pair n) throws CompileError {
30: }
31:
32: public void atFieldDecl(FieldDecl n) throws CompileError {
33: }
34:
35: public void atMethodDecl(MethodDecl n) throws CompileError {
36: }
37:
38: public void atStmnt(Stmnt n) throws CompileError {
39: }
40:
41: public void atDeclarator(Declarator n) throws CompileError {
42: }
43:
44: public void atAssignExpr(AssignExpr n) throws CompileError {
45: }
46:
47: public void atCondExpr(CondExpr n) throws CompileError {
48: }
49:
50: public void atBinExpr(BinExpr n) throws CompileError {
51: }
52:
53: public void atExpr(Expr n) throws CompileError {
54: }
55:
56: public void atCallExpr(CallExpr n) throws CompileError {
57: }
58:
59: public void atCastExpr(CastExpr n) throws CompileError {
60: }
61:
62: public void atInstanceOfExpr(InstanceOfExpr n) throws CompileError {
63: }
64:
65: public void atNewExpr(NewExpr n) throws CompileError {
66: }
67:
68: public void atSymbol(Symbol n) throws CompileError {
69: }
70:
71: public void atMember(Member n) throws CompileError {
72: }
73:
74: public void atVariable(Variable n) throws CompileError {
75: }
76:
77: public void atKeyword(Keyword n) throws CompileError {
78: }
79:
80: public void atStringL(StringL n) throws CompileError {
81: }
82:
83: public void atIntConst(IntConst n) throws CompileError {
84: }
85:
86: public void atDoubleConst(DoubleConst n) throws CompileError {
87: }
88:
89: public void atArrayInit(ArrayInit n) throws CompileError {
90: }
91: }
|