langtools/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor8.java
author jjg
Thu, 15 Dec 2016 11:47:25 -0800
changeset 42821 e5eee1c92be0
parent 25874 83c19f00452c
child 43147 823bfbf9e914
permissions -rw-r--r--
8170553: javac info options should match launcher options Reviewed-by: jlahoda
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     1
/*
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
     2
 * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     4
 *
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    10
 *
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    15
 * accompanied this code).
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    16
 *
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    20
 *
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    23
 * questions.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    24
 */
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    25
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    26
package javax.lang.model.util;
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    27
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    28
import static javax.lang.model.SourceVersion.*;
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    29
import javax.lang.model.SourceVersion;
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    30
import javax.annotation.processing.SupportedSourceVersion;
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    31
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    32
/**
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    33
 * A skeletal visitor for annotation values with default behavior
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    34
 * appropriate for the {@link SourceVersion#RELEASE_8 RELEASE_8}
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    35
 * source version.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    36
 *
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    37
 * <p> <b>WARNING:</b> The {@code AnnotationValueVisitor} interface
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    38
 * implemented by this class may have methods added to it in the
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    39
 * future to accommodate new, currently unknown, language structures
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    40
 * added to future versions of the Java&trade; programming language.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    41
 * Therefore, methods whose names begin with {@code "visit"} may be
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    42
 * added to this class in the future; to avoid incompatibilities,
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    43
 * classes which extend this class should not declare any instance
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    44
 * methods with names beginning with {@code "visit"}.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    45
 *
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    46
 * <p>When such a new visit method is added, the default
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    47
 * implementation in this class will be to call the {@link
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    48
 * #visitUnknown visitUnknown} method.  A new abstract annotation
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    49
 * value visitor class will also be introduced to correspond to the
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    50
 * new language level; this visitor will have different default
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    51
 * behavior for the visit method in question.  When the new visitor is
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    52
 * introduced, all or portions of this visitor may be deprecated.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
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: 14258
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: 14258
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: 14258
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: 14258
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: 14258
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: 14258
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: 14258
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: 14258
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: 14258
diff changeset
    62
 *
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    63
 * @param <R> the return type of this visitor's methods
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    64
 * @param <P> the type of the additional parameter to this visitor's methods.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    65
 *
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    66
 * @see AbstractAnnotationValueVisitor6
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    67
 * @see AbstractAnnotationValueVisitor7
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
    68
 * @see AbstractAnnotationValueVisitor9
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    69
 * @since 1.8
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    70
 */
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    71
@SupportedSourceVersion(RELEASE_8)
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    72
public abstract class AbstractAnnotationValueVisitor8<R, P> extends AbstractAnnotationValueVisitor7<R, P> {
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    73
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    74
    /**
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    75
     * Constructor for concrete subclasses to call.
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    76
     */
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    77
    protected AbstractAnnotationValueVisitor8() {
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    78
        super();
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    79
    }
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents:
diff changeset
    80
}