langtools/src/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor7.java
author darcy
Mon, 21 Jul 2014 16:21:43 -0700
changeset 25696 86204c8c6771
parent 25690 b1dac768ab79
permissions -rw-r--r--
8051482: Fix deprecation warnings in javax.lang.model.util Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     1
/*
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
     2
 * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     4
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    10
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    15
 * accompanied this code).
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    16
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    20
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    23
 * questions.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    24
 */
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    25
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    26
package javax.lang.model.util;
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    27
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    28
import static javax.lang.model.SourceVersion.*;
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    29
import javax.lang.model.SourceVersion;
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    30
import javax.annotation.processing.SupportedSourceVersion;
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    31
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    32
/**
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    33
 * A skeletal visitor for annotation values with default behavior
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    34
 * appropriate for the {@link SourceVersion#RELEASE_7 RELEASE_7}
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    35
 * source version.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    36
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    37
 * <p> <b>WARNING:</b> The {@code AnnotationValueVisitor} interface
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    38
 * implemented by this class may have methods added to it in the
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    39
 * future to accommodate new, currently unknown, language structures
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    40
 * added to future versions of the Java&trade; programming language.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    41
 * Therefore, methods whose names begin with {@code "visit"} may be
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    42
 * added to this class in the future; to avoid incompatibilities,
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    43
 * classes which extend this class should not declare any instance
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    44
 * methods with names beginning with {@code "visit"}.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    45
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    46
 * <p>When such a new visit method is added, the default
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    47
 * implementation in this class will be to call the {@link
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    48
 * #visitUnknown visitUnknown} method.  A new abstract annotation
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    49
 * value visitor class will also be introduced to correspond to the
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    50
 * new language level; this visitor will have different default
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    51
 * behavior for the visit method in question.  When the new visitor is
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    52
 * introduced, all or portions of this visitor may be deprecated.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    53
 *
15386
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    54
 * <p>Note that adding a default implementation of a new visit method
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    55
 * in a visitor class will occur instead of adding a <em>default
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    56
 * method</em> directly in the visitor interface since a Java SE 8
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    57
 * language feature cannot be used to this version of the API since
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    58
 * this version is required to be runnable on Java SE 7
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    59
 * implementations.  Future versions of the API that are only required
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    60
 * to run on Java SE 8 and later may take advantage of default methods
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    61
 * in this situation.
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 14870
diff changeset
    62
 *
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    63
 * @param <R> the return type of this visitor's methods
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    64
 * @param <P> the type of the additional parameter to this visitor's methods.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    65
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    66
 * @see AbstractAnnotationValueVisitor6
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents: 5841
diff changeset
    67
 * @see AbstractAnnotationValueVisitor8
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
    68
 * @see AbstractAnnotationValueVisitor9
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    69
 * @since 1.7
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    70
 */
25696
86204c8c6771 8051482: Fix deprecation warnings in javax.lang.model.util
darcy
parents: 25690
diff changeset
    71
@SuppressWarnings("deprecation") // Superclass deprecated
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    72
@SupportedSourceVersion(RELEASE_7)
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    73
public abstract class AbstractAnnotationValueVisitor7<R, P> extends AbstractAnnotationValueVisitor6<R, P> {
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    74
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    75
    /**
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    76
     * Constructor for concrete subclasses to call.
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    77
     */
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    78
    protected AbstractAnnotationValueVisitor7() {
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    79
        super();
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    80
    }
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents:
diff changeset
    81
}