blob: e7b4596cea8a0fd0832fdfe2e860593091d7ec09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/*
* Javassist, a Java-bytecode translator toolkit.
* Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package javassist.compiler.ast;
import javassist.compiler.CompileError;
/**
* The visitor pattern.
*
* @see ast.ASTree#accept(Visitor)
*/
public class Visitor {
public void atASTList(ASTList n) throws CompileError {}
public void atPair(Pair n) throws CompileError {}
public void atFieldDecl(FieldDecl n) throws CompileError {}
public void atMethodDecl(MethodDecl n) throws CompileError {}
public void atStmnt(Stmnt n) throws CompileError {}
public void atDeclarator(Declarator n) throws CompileError {}
public void atAssignExpr(AssignExpr n) throws CompileError {}
public void atCondExpr(CondExpr n) throws CompileError {}
public void atBinExpr(BinExpr n) throws CompileError {}
public void atExpr(Expr n) throws CompileError {}
public void atCastExpr(CastExpr n) throws CompileError {}
public void atInstanceOfExpr(InstanceOfExpr n) throws CompileError {}
public void atNewExpr(NewExpr n) throws CompileError {}
public void atSymbol(Symbol n) throws CompileError {}
public void atMember(Member n) throws CompileError {}
public void atVariable(Variable n) throws CompileError {}
public void atKeyword(Keyword n) throws CompileError {}
public void atStringL(StringL n) throws CompileError {}
public void atIntConst(IntConst n) throws CompileError {}
public void atDoubleConst(DoubleConst n) throws CompileError {}
}
|