src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java
author pliden
Fri, 23 Aug 2019 08:48:27 +0200
changeset 57852 92f994585e25
parent 47868 5cc5b8270cad
permissions -rw-r--r--
8229127: Make some methods in the allocation path non-virtual Reviewed-by: eosterlund
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
43147
823bfbf9e914 8172531: Correct misstatements in javax.lang.model visitor documentation
darcy
parents: 25874
diff changeset
     2
 * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package javax.lang.model.util;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import java.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import javax.lang.model.element.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import javax.lang.model.type.TypeMirror;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import static javax.lang.model.SourceVersion.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import javax.lang.model.SourceVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import javax.annotation.processing.SupportedSourceVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * A simple visitor for annotation values with default behavior
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * appropriate for the {@link SourceVersion#RELEASE_6 RELEASE_6}
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * source version.  Visit methods call {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * #defaultAction} passing their arguments to {@code defaultAction}'s
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 * corresponding parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 * <p> Methods in this class may be overridden subject to their
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * general contract.  Note that annotating methods in concrete
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 * subclasses with {@link java.lang.Override @Override} will help
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * ensure that methods are overridden as intended.
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 * <p> <b>WARNING:</b> The {@code AnnotationValueVisitor} interface
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 * implemented by this class may have methods added to it in the
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 * future to accommodate new, currently unknown, language structures
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 * added to future versions of the Java&trade; programming language.
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 * Therefore, methods whose names begin with {@code "visit"} may be
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 * added to this class in the future; to avoid incompatibilities,
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 * classes which extend this class should not declare any instance
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 * methods with names beginning with {@code "visit"}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 * <p>When such a new visit method is added, the default
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 * implementation in this class will be to call the {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 * #visitUnknown visitUnknown} method.  A new simple annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 * value visitor class will also be introduced to correspond to the
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 * new language level; this visitor will have different default
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
 * behavior for the visit method in question.  When the new visitor is
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
 * introduced, all or portions of this visitor may be deprecated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 * @param <R> the return type of this visitor's methods
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
 * @param <P> the type of the additional parameter to this visitor's methods.
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
 * @author Joseph D. Darcy
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
 * @author Scott Seligman
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
 * @author Peter von der Ah&eacute;
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
    72
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
    73
 * @see SimpleAnnotationValueVisitor7
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents: 7681
diff changeset
    74
 * @see SimpleAnnotationValueVisitor8
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
    75
 * @see SimpleAnnotationValueVisitor9
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
 * @since 1.6
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
@SupportedSourceVersion(RELEASE_6)
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
public class SimpleAnnotationValueVisitor6<R, P>
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
    extends AbstractAnnotationValueVisitor6<R, P> {
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * Default value to be returned; {@link #defaultAction
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     * defaultAction} returns this value unless the method is
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
     * overridden.
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
    protected final R DEFAULT_VALUE;
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     * Constructor for concrete subclasses; uses {@code null} for the
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     * default value.
43257
df68602dc422 8172686: Use less aggressive deprecation of utility visitors
darcy
parents: 43147
diff changeset
    92
     * @deprecated Release 6 is obsolete; update to a visitor for a newer
df68602dc422 8172686: Use less aggressive deprecation of utility visitors
darcy
parents: 43147
diff changeset
    93
     * release level.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     */
47462
b1b37e21fb6f 8172818: Add since=9 deprecation information to javax.lang.model classes
darcy
parents: 47216
diff changeset
    95
    @Deprecated(since="9")
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    protected SimpleAnnotationValueVisitor6() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        super();
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        DEFAULT_VALUE = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
     * Constructor for concrete subclasses; uses the argument for the
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
     * default value.
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * @param defaultValue the value to assign to {@link #DEFAULT_VALUE}
43257
df68602dc422 8172686: Use less aggressive deprecation of utility visitors
darcy
parents: 43147
diff changeset
   106
     * @deprecated Release 6 is obsolete; update to a visitor for a newer
df68602dc422 8172686: Use less aggressive deprecation of utility visitors
darcy
parents: 43147
diff changeset
   107
     * release level.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     */
47462
b1b37e21fb6f 8172818: Add since=9 deprecation information to javax.lang.model classes
darcy
parents: 47216
diff changeset
   109
    @Deprecated(since="9")
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    protected SimpleAnnotationValueVisitor6(R defaultValue) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
        super();
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
        DEFAULT_VALUE = defaultValue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   116
     * The default action for visit methods.
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   117
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   118
     * @implSpec The implementation in this class just returns {@link
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   119
     * #DEFAULT_VALUE}; subclasses will commonly override this method.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     * @param o the value of the annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     * @return {@code DEFAULT_VALUE} unless overridden
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
    protected R defaultAction(Object o, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        return DEFAULT_VALUE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   130
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   131
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   132
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
     * @param b {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
    public R visitBoolean(boolean b, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
        return defaultAction(b, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   143
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   144
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   145
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
     * @param b {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
    public R visitByte(byte b, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
        return defaultAction(b, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   156
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   157
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   158
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
     * @param c {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
    public R visitChar(char c, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
        return defaultAction(c, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   169
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   170
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   171
     * @implSpec This implementation calls {@code defaultAction}.
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   172
     *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
     * @param d {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    public R visitDouble(double d, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        return defaultAction(d, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   183
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   184
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   185
     * @implSpec This implementation calls {@code defaultAction}.
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   186
     *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
     * @param f {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
    public R visitFloat(float f, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        return defaultAction(f, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   197
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   198
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   199
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     * @param i {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    public R visitInt(int i, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
        return defaultAction(i, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   210
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   211
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   212
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     * @param i {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    public R visitLong(long i, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        return defaultAction(i, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   223
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   224
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   225
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     * @param s {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    public R visitShort(short s, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        return defaultAction(s, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   236
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   237
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   238
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
     * @param s {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
    public R visitString(String s, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
        return defaultAction(s, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   249
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   250
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   251
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
    public R visitType(TypeMirror t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   262
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   263
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   264
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     * @param c {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
    public R visitEnumConstant(VariableElement c, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
        return defaultAction(c, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   275
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   276
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   277
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
     * @param a {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
    public R visitAnnotation(AnnotationMirror a, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
        return defaultAction(a, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
    /**
47868
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   288
     * {@inheritDoc}
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   289
     *
5cc5b8270cad 8191162: Use @implSpec tag for javax.lang.model.util visitor methods
darcy
parents: 47462
diff changeset
   290
     * @implSpec This implementation calls {@code defaultAction}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
     * @param vals {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
    public R visitArray(List<? extends AnnotationValue> vals, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        return defaultAction(vals, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
}