langtools/src/share/classes/com/sun/source/tree/TreeVisitor.java
changeset 7072 4863847e93a5
parent 5520 86e4b9a9da40
child 7074 0183c3f9614e
equal deleted inserted replaced
7071:8bcda461a06a 7072:4863847e93a5
    55  * @author Jonathan Gibbons
    55  * @author Jonathan Gibbons
    56  *
    56  *
    57  * @since 1.6
    57  * @since 1.6
    58  */
    58  */
    59 public interface TreeVisitor<R,P> {
    59 public interface TreeVisitor<R,P> {
    60     R visitAnnotatedType(AnnotatedTypeTree node, P p);
    60 //308    R visitAnnotatedType(AnnotatedTypeTree node, P p);
    61     R visitAnnotation(AnnotationTree node, P p);
    61     R visitAnnotation(AnnotationTree node, P p);
    62     R visitMethodInvocation(MethodInvocationTree node, P p);
    62     R visitMethodInvocation(MethodInvocationTree node, P p);
    63     R visitAssert(AssertTree node, P p);
    63     R visitAssert(AssertTree node, P p);
    64     R visitAssignment(AssignmentTree node, P p);
    64     R visitAssignment(AssignmentTree node, P p);
    65     R visitCompoundAssignment(CompoundAssignmentTree node, P p);
    65     R visitCompoundAssignment(CompoundAssignmentTree node, P p);