src/share/classes/javax/lang/model/util/SimpleTypeVisitor7.java

changeset 575
9a7c998bf2fc
child 851
cad51b6eb7a6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/classes/javax/lang/model/util/SimpleTypeVisitor7.java	Wed Jun 02 19:08:47 2010 -0700
     1.3 @@ -0,0 +1,91 @@
     1.4 +/*
     1.5 + * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package javax.lang.model.util;
    1.30 +
    1.31 +import javax.lang.model.type.*;
    1.32 +import javax.annotation.processing.SupportedSourceVersion;
    1.33 +import javax.lang.model.SourceVersion;
    1.34 +import static javax.lang.model.SourceVersion.*;
    1.35 +
    1.36 +/**
    1.37 + * A simple visitor of types with default behavior appropriate for the
    1.38 + * {@link SourceVersion#RELEASE_7 RELEASE_7} source version.
    1.39 + *
    1.40 + * Visit methods corresponding to {@code RELEASE_7} language
    1.41 + * constructs call {@link #defaultAction}, passing their arguments to
    1.42 + * {@code defaultAction}'s corresponding parameters.
    1.43 + *
    1.44 + * <p> Methods in this class may be overridden subject to their
    1.45 + * general contract.  Note that annotating methods in concrete
    1.46 + * subclasses with {@link java.lang.Override @Override} will help
    1.47 + * ensure that methods are overridden as intended.
    1.48 + *
    1.49 + * <p> <b>WARNING:</b> The {@code TypeVisitor} interface implemented
    1.50 + * by this class may have methods added to it in the future to
    1.51 + * accommodate new, currently unknown, language structures added to
    1.52 + * future versions of the Java&trade; programming language.
    1.53 + * Therefore, methods whose names begin with {@code "visit"} may be
    1.54 + * added to this class in the future; to avoid incompatibilities,
    1.55 + * classes which extend this class should not declare any instance
    1.56 + * methods with names beginning with {@code "visit"}.
    1.57 + *
    1.58 + * <p>When such a new visit method is added, the default
    1.59 + * implementation in this class will be to call the {@link
    1.60 + * #visitUnknown visitUnknown} method.  A new simple type visitor
    1.61 + * class will also be introduced to correspond to the new language
    1.62 + * level; this visitor will have different default behavior for the
    1.63 + * visit method in question.  When the new visitor is introduced, all
    1.64 + * or portions of this visitor may be deprecated.
    1.65 + *
    1.66 + * @param <R> the return type of this visitor's methods.  Use {@link
    1.67 + *            Void} for visitors that do not need to return results.
    1.68 + * @param <P> the type of the additional parameter to this visitor's
    1.69 + *            methods.  Use {@code Void} for visitors that do not need an
    1.70 + *            additional parameter.
    1.71 + *
    1.72 + * @see SimpleTypeVisitor6
    1.73 + * @since 1.7
    1.74 + */
    1.75 +@SupportedSourceVersion(RELEASE_7)
    1.76 +public class SimpleTypeVisitor7<R, P> extends SimpleTypeVisitor6<R, P> {
    1.77 +    /**
    1.78 +     * Constructor for concrete subclasses; uses {@code null} for the
    1.79 +     * default value.
    1.80 +     */
    1.81 +    protected SimpleTypeVisitor7(){
    1.82 +        super(null);
    1.83 +    }
    1.84 +
    1.85 +    /**
    1.86 +     * Constructor for concrete subclasses; uses the argument for the
    1.87 +     * default value.
    1.88 +     *
    1.89 +     * @param defaultValue the value to assign to {@link #DEFAULT_VALUE}
    1.90 +     */
    1.91 +    protected SimpleTypeVisitor7(R defaultValue){
    1.92 +        super(defaultValue);
    1.93 +    }
    1.94 +}

mercurial