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 | |
package com.sun.tools.javafx.tree; |
27 | |
|
28 | |
import com.sun.tools.javac.tree.JCTree; |
29 | |
import com.sun.tools.javac.tree.JCTree.*; |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
public interface JCVisitor { |
36 | |
public void visitTopLevel(JCCompilationUnit that); |
37 | |
public void visitImport(JCImport that); |
38 | |
public void visitClassDef(JCClassDecl that); |
39 | |
public void visitMethodDef(JCMethodDecl that); |
40 | |
public void visitVarDef(JCVariableDecl that); |
41 | |
public void visitSkip(JCSkip that); |
42 | |
public void visitBlock(JCBlock that); |
43 | |
public void visitDoLoop(JCDoWhileLoop that); |
44 | |
public void visitWhileLoop(JCWhileLoop that); |
45 | |
public void visitForLoop(JCForLoop that); |
46 | |
public void visitForeachLoop(JCEnhancedForLoop that); |
47 | |
public void visitLabelled(JCLabeledStatement that); |
48 | |
public void visitSwitch(JCSwitch that); |
49 | |
public void visitCase(JCCase that); |
50 | |
public void visitSynchronized(JCSynchronized that); |
51 | |
public void visitTry(JCTry that); |
52 | |
public void visitCatch(JCCatch that); |
53 | |
public void visitConditional(JCConditional that); |
54 | |
public void visitIf(JCIf that); |
55 | |
public void visitExec(JCExpressionStatement that); |
56 | |
public void visitBreak(JCBreak that); |
57 | |
public void visitContinue(JCContinue that); |
58 | |
public void visitReturn(JCReturn that); |
59 | |
public void visitThrow(JCThrow that); |
60 | |
public void visitAssert(JCAssert that); |
61 | |
public void visitApply(JCMethodInvocation that); |
62 | |
public void visitNewClass(JCNewClass that); |
63 | |
public void visitNewArray(JCNewArray that); |
64 | |
public void visitParens(JCParens that); |
65 | |
public void visitAssign(JCAssign that); |
66 | |
public void visitAssignop(JCAssignOp that); |
67 | |
public void visitUnary(JCUnary that); |
68 | |
public void visitBinary(JCBinary that); |
69 | |
public void visitTypeCast(JCTypeCast that); |
70 | |
public void visitTypeTest(JCInstanceOf that); |
71 | |
public void visitIndexed(JCArrayAccess that); |
72 | |
public void visitSelect(JCFieldAccess that); |
73 | |
public void visitIdent(JCIdent that); |
74 | |
public void visitLiteral(JCLiteral that); |
75 | |
public void visitTypeIdent(JCPrimitiveTypeTree that); |
76 | |
public void visitTypeArray(JCArrayTypeTree that); |
77 | |
public void visitTypeApply(JCTypeApply that); |
78 | |
public void visitTypeParameter(JCTypeParameter that); |
79 | |
public void visitWildcard(JCWildcard that); |
80 | |
public void visitTypeBoundKind(TypeBoundKind that); |
81 | |
public void visitAnnotation(JCAnnotation that); |
82 | |
public void visitModifiers(JCModifiers that); |
83 | |
public void visitErroneous(JCErroneous that); |
84 | |
public void visitLetExpr(LetExpr that); |
85 | |
|
86 | |
public void visitTree(JCTree that); |
87 | |
|
88 | |
} |