langtools/src/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java
changeset 25690 b1dac768ab79
parent 22448 a85fbad9d687
equal deleted inserted replaced
25608:e1be1d88a557 25690:b1dac768ab79
     1 /*
     1 /*
     2  * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    70  * @author Scott Seligman
    70  * @author Scott Seligman
    71  * @author Peter von der Ahé
    71  * @author Peter von der Ahé
    72  *
    72  *
    73  * @see AbstractAnnotationValueVisitor7
    73  * @see AbstractAnnotationValueVisitor7
    74  * @see AbstractAnnotationValueVisitor8
    74  * @see AbstractAnnotationValueVisitor8
       
    75  * @see AbstractAnnotationValueVisitor9
    75  * @since 1.6
    76  * @since 1.6
       
    77  * @deprecated Release 6 is obsolete; update to a visitor for a newer
       
    78  * release level.
    76  */
    79  */
       
    80 @Deprecated
    77 @SupportedSourceVersion(RELEASE_6)
    81 @SupportedSourceVersion(RELEASE_6)
    78 public abstract class AbstractAnnotationValueVisitor6<R, P>
    82 public abstract class AbstractAnnotationValueVisitor6<R, P>
    79     implements AnnotationValueVisitor<R, P> {
    83     implements AnnotationValueVisitor<R, P> {
    80 
    84 
    81     /**
    85     /**