< prev index next >

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

Print this page




  27 
  28 import static javax.lang.model.SourceVersion.*;
  29 import javax.lang.model.SourceVersion;
  30 import javax.annotation.processing.SupportedSourceVersion;
  31 
  32 /**
  33  * A skeletal visitor for annotation values with default behavior
  34  * appropriate for source version {@link SourceVersion#RELEASE_14 RELEASE_14}.
  35  *
  36  * @param <R> the return type of this visitor's methods
  37  * @param <P> the type of the additional parameter to this visitor's methods.
  38  *
  39  * @see <a href="AbstractAnnotationValueVisitor6.html#note_for_subclasses">
  40  * <strong>Compatibility note for subclasses</strong></a>
  41  * @see AbstractAnnotationValueVisitor6
  42  * @see AbstractAnnotationValueVisitor7
  43  * @see AbstractAnnotationValueVisitor8
  44  * @see AbstractAnnotationValueVisitor9
  45  * @since 14
  46  */
  47 @SupportedSourceVersion(RELEASE_15)
  48 public abstract class AbstractAnnotationValueVisitor14<R, P> extends AbstractAnnotationValueVisitor9<R, P> {
  49 
  50     /**
  51      * Constructor for concrete subclasses to call.
  52      */
  53     protected AbstractAnnotationValueVisitor14() {
  54         super();
  55     }
  56 }


  27 
  28 import static javax.lang.model.SourceVersion.*;
  29 import javax.lang.model.SourceVersion;
  30 import javax.annotation.processing.SupportedSourceVersion;
  31 
  32 /**
  33  * A skeletal visitor for annotation values with default behavior
  34  * appropriate for source version {@link SourceVersion#RELEASE_14 RELEASE_14}.
  35  *
  36  * @param <R> the return type of this visitor's methods
  37  * @param <P> the type of the additional parameter to this visitor's methods.
  38  *
  39  * @see <a href="AbstractAnnotationValueVisitor6.html#note_for_subclasses">
  40  * <strong>Compatibility note for subclasses</strong></a>
  41  * @see AbstractAnnotationValueVisitor6
  42  * @see AbstractAnnotationValueVisitor7
  43  * @see AbstractAnnotationValueVisitor8
  44  * @see AbstractAnnotationValueVisitor9
  45  * @since 14
  46  */
  47 @SupportedSourceVersion(RELEASE_16)
  48 public abstract class AbstractAnnotationValueVisitor14<R, P> extends AbstractAnnotationValueVisitor9<R, P> {
  49 
  50     /**
  51      * Constructor for concrete subclasses to call.
  52      */
  53     protected AbstractAnnotationValueVisitor14() {
  54         super();
  55     }
  56 }
< prev index next >