< prev index next >

src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor9.java

Print this page


   1 /*
   2  * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  27 
  28 import javax.annotation.processing.SupportedSourceVersion;
  29 import javax.lang.model.SourceVersion;
  30 import javax.lang.model.type.*;
  31 import static javax.lang.model.SourceVersion.*;
  32 
  33 /**
  34  * A visitor of types based on their {@linkplain TypeKind kind} with
  35  * default behavior appropriate for source versions {@link
  36  * SourceVersion#RELEASE_9 RELEASE_9} through {@link
  37  * SourceVersion#RELEASE_14 RELEASE_14}.
  38  *
  39  * For {@linkplain
  40  * TypeMirror types} <code><i>Xyz</i></code> that may have more than one
  41  * kind, the <code>visit<i>Xyz</i></code> methods in this class delegate
  42  * to the <code>visit<i>Xyz</i>As<i>Kind</i></code> method corresponding to the
  43  * first argument's kind.  The <code>visit<i>Xyz</i>As<i>Kind</i></code> methods
  44  * call {@link #defaultAction defaultAction}, passing their arguments
  45  * to {@code defaultAction}'s corresponding parameters.
  46  *
  47  * <p> Methods in this class may be overridden subject to their
  48  * general contract.  Note that annotating methods in concrete
  49  * subclasses with {@link java.lang.Override @Override} will help
  50  * ensure that methods are overridden as intended.
  51  *
  52  * <p> <b>WARNING:</b> The {@code TypeVisitor} interface implemented
  53  * by this class may have methods added to it in the future to
  54  * accommodate new, currently unknown, language structures added to
  55  * future versions of the Java&trade; programming language.
  56  * Therefore, methods whose names begin with {@code "visit"} may be
  57  * added to this class in the future; to avoid incompatibilities,
  58  * classes which extend this class should not declare any instance
  59  * methods with names beginning with {@code "visit"}.
  60  *
  61  * <p>When such a new visit method is added, the default
  62  * implementation in this class will be to call the {@link
  63  * #visitUnknown visitUnknown} method.  A new type kind visitor class
  64  * will also be introduced to correspond to the new language level;
  65  * this visitor will have different default behavior for the visit
  66  * method in question.  When the new visitor is introduced, all or
  67  * portions of this visitor may be deprecated.
  68  *
  69  * @param <R> the return type of this visitor's methods.  Use {@link
  70  *            Void} for visitors that do not need to return results.
  71  * @param <P> the type of the additional parameter to this visitor's
  72  *            methods.  Use {@code Void} for visitors that do not need an
  73  *            additional parameter.
  74  *


  75  * @see TypeKindVisitor6
  76  * @see TypeKindVisitor7
  77  * @see TypeKindVisitor8
  78  * @see TypeKindVisitor14
  79  * @since 9
  80  */
  81 @SupportedSourceVersion(RELEASE_14)
  82 public class TypeKindVisitor9<R, P> extends TypeKindVisitor8<R, P> {
  83     /**
  84      * Constructor for concrete subclasses to call; uses {@code null}
  85      * for the default value.
  86      */
  87     protected TypeKindVisitor9() {
  88         super(null);
  89     }
  90 
  91     /**
  92      * Constructor for concrete subclasses to call; uses the argument
  93      * for the default value.
  94      *


   1 /*
   2  * Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  27 
  28 import javax.annotation.processing.SupportedSourceVersion;
  29 import javax.lang.model.SourceVersion;
  30 import javax.lang.model.type.*;
  31 import static javax.lang.model.SourceVersion.*;
  32 
  33 /**
  34  * A visitor of types based on their {@linkplain TypeKind kind} with
  35  * default behavior appropriate for source versions {@link
  36  * SourceVersion#RELEASE_9 RELEASE_9} through {@link
  37  * SourceVersion#RELEASE_14 RELEASE_14}.
  38  *
  39  * For {@linkplain
  40  * TypeMirror types} <code><i>Xyz</i></code> that may have more than one
  41  * kind, the <code>visit<i>Xyz</i></code> methods in this class delegate
  42  * to the <code>visit<i>Xyz</i>As<i>Kind</i></code> method corresponding to the
  43  * first argument's kind.  The <code>visit<i>Xyz</i>As<i>Kind</i></code> methods
  44  * call {@link #defaultAction defaultAction}, passing their arguments
  45  * to {@code defaultAction}'s corresponding parameters.
  46  *
  47  * @apiNote
  48  * Methods in this class may be overridden subject to their general
  49  * contract.


















  50  *
  51  * @param <R> the return type of this visitor's methods.  Use {@link
  52  *            Void} for visitors that do not need to return results.
  53  * @param <P> the type of the additional parameter to this visitor's
  54  *            methods.  Use {@code Void} for visitors that do not need an
  55  *            additional parameter.
  56  *
  57  * @see <a href="TypeKindVisitor6.html#note_for_subclasses">
  58  * <strong>Compatibility note for subclasses</strong></a>
  59  * @see TypeKindVisitor6
  60  * @see TypeKindVisitor7
  61  * @see TypeKindVisitor8
  62  * @see TypeKindVisitor14
  63  * @since 9
  64  */
  65 @SupportedSourceVersion(RELEASE_14)
  66 public class TypeKindVisitor9<R, P> extends TypeKindVisitor8<R, P> {
  67     /**
  68      * Constructor for concrete subclasses to call; uses {@code null}
  69      * for the default value.
  70      */
  71     protected TypeKindVisitor9() {
  72         super(null);
  73     }
  74 
  75     /**
  76      * Constructor for concrete subclasses to call; uses the argument
  77      * for the default value.
  78      *


< prev index next >