langtools/src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor7.java
changeset 43147 823bfbf9e914
parent 25874 83c19f00452c
child 43257 df68602dc422
equal deleted inserted replaced
43146:7c249fca6c06 43147:823bfbf9e914
     1 /*
     1 /*
     2  * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    56  * value visitor class will also be introduced to correspond to the
    56  * value visitor class will also be introduced to correspond to the
    57  * new language level; this visitor will have different default
    57  * new language level; this visitor will have different default
    58  * behavior for the visit method in question.  When the new visitor is
    58  * behavior for the visit method in question.  When the new visitor is
    59  * introduced, all or portions of this visitor may be deprecated.
    59  * introduced, all or portions of this visitor may be deprecated.
    60  *
    60  *
    61  * <p>Note that adding a default implementation of a new visit method
       
    62  * in a visitor class will occur instead of adding a <em>default
       
    63  * method</em> directly in the visitor interface since a Java SE 8
       
    64  * language feature cannot be used to this version of the API since
       
    65  * this version is required to be runnable on Java SE 7
       
    66  * implementations.  Future versions of the API that are only required
       
    67  * to run on Java SE 8 and later may take advantage of default methods
       
    68  * in this situation.
       
    69  *
       
    70  * @param <R> the return type of this visitor's methods
    61  * @param <R> the return type of this visitor's methods
    71  * @param <P> the type of the additional parameter to this visitor's methods.
    62  * @param <P> the type of the additional parameter to this visitor's methods.
    72  *
    63  *
    73  * @see SimpleAnnotationValueVisitor6
    64  * @see SimpleAnnotationValueVisitor6
    74  * @see SimpleAnnotationValueVisitor8
    65  * @see SimpleAnnotationValueVisitor8