src/share/classes/com/sun/source/tree/TreeVisitor.java

changeset 1521
71f35e4b93a5
parent 1436
f6f1fd261f57
child 1590
011cf7e0a148
     1.1 --- a/src/share/classes/com/sun/source/tree/TreeVisitor.java	Wed Jan 23 20:57:40 2013 +0000
     1.2 +++ b/src/share/classes/com/sun/source/tree/TreeVisitor.java	Wed Jan 23 13:27:24 2013 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -57,6 +57,7 @@
    1.11   * @since 1.6
    1.12   */
    1.13  public interface TreeVisitor<R,P> {
    1.14 +    R visitAnnotatedType(AnnotatedTypeTree node, P p);
    1.15      R visitAnnotation(AnnotationTree node, P p);
    1.16      R visitMethodInvocation(MethodInvocationTree node, P p);
    1.17      R visitAssert(AssertTree node, P p);

mercurial