langtools/src/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java
author darcy
Thu, 17 Jul 2014 09:47:25 -0700
changeset 25690 b1dac768ab79
parent 18392 de0ad9c84ce8
permissions -rw-r--r--
8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9 Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 18392
diff changeset
     2
 * Copyright (c) 2005, 2014, 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
import javax.lang.model.type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import javax.annotation.processing.SupportedSourceVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import javax.lang.model.SourceVersion;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import static javax.lang.model.SourceVersion.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 * A simple visitor of types with default behavior appropriate for the
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * {@link SourceVersion#RELEASE_6 RELEASE_6} source version.
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * Visit methods corresponding to {@code RELEASE_6} language
8235
0f7e1f7a6a4b 6961571: Update visitors to support ARM's ElementKind.RESOURCE_VARIABLE
darcy
parents: 7681
diff changeset
    39
 * constructs call {@link #defaultAction defaultAction}, passing their
0f7e1f7a6a4b 6961571: Update visitors to support ARM's ElementKind.RESOURCE_VARIABLE
darcy
parents: 7681
diff changeset
    40
 * arguments to {@code defaultAction}'s corresponding parameters.
0f7e1f7a6a4b 6961571: Update visitors to support ARM's ElementKind.RESOURCE_VARIABLE
darcy
parents: 7681
diff changeset
    41
 *
0f7e1f7a6a4b 6961571: Update visitors to support ARM's ElementKind.RESOURCE_VARIABLE
darcy
parents: 7681
diff changeset
    42
 * For constructs introduced in {@code RELEASE_7} and later, {@code
0f7e1f7a6a4b 6961571: Update visitors to support ARM's ElementKind.RESOURCE_VARIABLE
darcy
parents: 7681
diff changeset
    43
 * visitUnknown} is called instead.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * <p> Methods in this class may be overridden subject to their
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 * general contract.  Note that annotating methods in concrete
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * subclasses with {@link java.lang.Override @Override} will help
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 * ensure that methods are overridden as intended.
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 * <p> <b>WARNING:</b> The {@code TypeVisitor} interface implemented
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 * by this class may have methods added to it in the future to
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 * accommodate new, currently unknown, language structures added to
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 * future versions of the Java&trade; programming language.
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 * Therefore, methods whose names begin with {@code "visit"} may be
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 * added to this class in the future; to avoid incompatibilities,
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 * classes which extend this class should not declare any instance
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 * methods with names beginning with {@code "visit"}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 * <p>When such a new visit method is added, the default
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 * implementation in this class will be to call the {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 * #visitUnknown visitUnknown} method.  A new simple type visitor
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 * class will also be introduced to correspond to the new language
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
 * level; this visitor will have different default behavior for the
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
 * visit method in question.  When the new visitor is introduced, all
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 * or portions of this visitor may be deprecated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 *
15386
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 10192
diff changeset
    67
 * <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: 10192
diff changeset
    68
 * 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: 10192
diff changeset
    69
 * 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: 10192
diff changeset
    70
 * 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: 10192
diff changeset
    71
 * 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: 10192
diff changeset
    72
 * 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: 10192
diff changeset
    73
 * 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: 10192
diff changeset
    74
 * in this situation.
92bc08d96f0c 8006264: Add explanation of why default methods cannot be used in JDK 8 javax.lang.model
darcy
parents: 10192
diff changeset
    75
 *
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
 * @param <R> the return type of this visitor's methods.  Use {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
 *            Void} for visitors that do not need to return results.
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
 * @param <P> the type of the additional parameter to this visitor's
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
 *            methods.  Use {@code Void} for visitors that do not need an
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
 *            additional parameter.
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
 * @author Joseph D. Darcy
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
 * @author Scott Seligman
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
 * @author Peter von der Ah&eacute;
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
    85
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
    86
 * @see SimpleTypeVisitor7
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents: 8235
diff changeset
    87
 * @see SimpleTypeVisitor8
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 18392
diff changeset
    88
 * @see SimpleTypeVisitor9
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
 * @since 1.6
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 18392
diff changeset
    90
 * @deprecated Release 6 is obsolete; update to a visitor for a newer
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 18392
diff changeset
    91
 * release level.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
 */
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 18392
diff changeset
    93
@Deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
@SupportedSourceVersion(RELEASE_6)
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
public class SimpleTypeVisitor6<R, P> extends AbstractTypeVisitor6<R, P> {
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     * Default value to be returned; {@link #defaultAction
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * defaultAction} returns this value unless the method is
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     * overridden.
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    protected final R DEFAULT_VALUE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * Constructor for concrete subclasses; uses {@code null} for the
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * default value.
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    protected SimpleTypeVisitor6(){
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
        DEFAULT_VALUE = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     * Constructor for concrete subclasses; uses the argument for the
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
     * default value.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
     * @param defaultValue the value to assign to {@link #DEFAULT_VALUE}
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
    protected SimpleTypeVisitor6(R defaultValue){
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
        DEFAULT_VALUE = defaultValue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     * The default action for visit methods.  The implementation in
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
     * this class just returns {@link #DEFAULT_VALUE}; subclasses will
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
     * commonly override this method.
18392
de0ad9c84ce8 8016779: Fix doclint warnings in javax.lang.model
darcy
parents: 15386
diff changeset
   125
     *
de0ad9c84ce8 8016779: Fix doclint warnings in javax.lang.model
darcy
parents: 15386
diff changeset
   126
     * @param e the type to process
de0ad9c84ce8 8016779: Fix doclint warnings in javax.lang.model
darcy
parents: 15386
diff changeset
   127
     * @param p a visitor-specified parameter
de0ad9c84ce8 8016779: Fix doclint warnings in javax.lang.model
darcy
parents: 15386
diff changeset
   128
     * @return {@code DEFAULT_VALUE} unless overridden
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
    protected R defaultAction(TypeMirror e, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        return DEFAULT_VALUE;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    public R visitPrimitive(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    public R visitNull(NullType t, P p){
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
    public R visitArray(ArrayType t, P p){
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    public R visitDeclared(DeclaredType t, P p){
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
    public R visitError(ErrorType t, P p){
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
    public R visitTypeVariable(TypeVariable t, P p){
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
    public R visitWildcard(WildcardType t, P p){
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
     * @param t {@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 visitExecutable(ExecutableType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        return defaultAction(t, 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
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
     * {@inheritDoc} This implementation calls {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
    public R visitNoType(NoType t, P p){
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
}