--- old/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java 2017-11-18 08:15:52.843823724 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java 2017-11-18 08:15:52.523663710 -0800 @@ -84,6 +84,7 @@ * {@code v.visit(av, p)} is equivalent to {@code av.accept(v, p)}. * @param av {@inheritDoc} * @param p {@inheritDoc} + * @return {@inheritDoc} */ public final R visit(AnnotationValue av, P p) { return av.accept(this, p); @@ -96,6 +97,7 @@ * {@code v.visit(av)} is equivalent to {@code av.accept(v, * null)}. * @param av {@inheritDoc} + * @return {@inheritDoc} */ public final R visit(AnnotationValue av) { return av.accept(this, null); @@ -111,6 +113,7 @@ * * @param av {@inheritDoc} * @param p {@inheritDoc} + * @return {@inheritDoc} */ @Override public R visitUnknown(AnnotationValue av, P p) { --- old/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor6.java 2017-11-18 08:15:53.456129751 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor6.java 2017-11-18 08:15:53.143973737 -0800 @@ -116,7 +116,7 @@ * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return a visitor-specified result + * @return {@inheritDoc} * @throws UnknownElementException * a visitor implementation may optionally throw this exception */ @@ -133,7 +133,7 @@ * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return the result of {@code visitUnknown} + * @return {@inheritDoc} * * @since 9 * @spec JPMS --- old/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor9.java 2017-11-18 08:15:54.064433777 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/AbstractElementVisitor9.java 2017-11-18 08:15:53.756279764 -0800 @@ -75,12 +75,14 @@ } /** - * Visits a {@code ModuleElement} in a manner defined by a + * {@inheritDoc} + * + * @implSpec Visits a {@code ModuleElement} in a manner defined by a * subclass. * * @param t {@inheritDoc} * @param p {@inheritDoc} - * @return the result of the visit as defined by a subclass + * @return {@inheritDoc} */ @Override public abstract R visitModule(ModuleElement t, P p); --- old/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor6.java 2017-11-18 08:15:54.696749805 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor6.java 2017-11-18 08:15:54.380591791 -0800 @@ -114,6 +114,8 @@ * * The element argument has kind {@code PACKAGE}. * + * @implSpec This implementation calls {@code defaultAction}. + * * @param e {@inheritDoc} * @param p {@inheritDoc} * @return {@inheritDoc} @@ -125,7 +127,9 @@ } /** - * Visits a type element, dispatching to the visit method for the + * {@inheritDoc} + * + * @implSpec This implementation dispatches to the visit method for the * specific {@linkplain ElementKind kind} of type, {@code * ANNOTATION_TYPE}, {@code CLASS}, {@code ENUM}, or {@code * INTERFACE}. @@ -156,8 +160,9 @@ } /** - * Visits an {@code ANNOTATION_TYPE} type element by calling - * {@code defaultAction}. + * Visits an {@code ANNOTATION_TYPE} type element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -168,8 +173,9 @@ } /** - * Visits a {@code CLASS} type element by calling {@code - * defaultAction}. + * Visits a {@code CLASS} type element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -180,8 +186,9 @@ } /** - * Visits an {@code ENUM} type element by calling {@code - * defaultAction}. + * Visits an {@code ENUM} type element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -192,8 +199,9 @@ } /** - * Visits an {@code INTERFACE} type element by calling {@code - * defaultAction}. + * Visits an {@code INTERFACE} type element. + * + * @implSpec This implementation calls {@code defaultAction}. *. * @param e the element to visit * @param p a visitor-specified parameter @@ -204,7 +212,9 @@ } /** - * Visits a variable element, dispatching to the visit method for + * Visits a variable element + * + * @implSpec This implementation dispatches to the visit method for * the specific {@linkplain ElementKind kind} of variable, {@code * ENUM_CONSTANT}, {@code EXCEPTION_PARAMETER}, {@code FIELD}, * {@code LOCAL_VARIABLE}, {@code PARAMETER}, or {@code RESOURCE_VARIABLE}. @@ -241,9 +251,10 @@ } /** - * Visits an {@code ENUM_CONSTANT} variable element by calling - * {@code defaultAction}. + * Visits an {@code ENUM_CONSTANT} variable element. * + * @implSpec This implementation calls {@code defaultAction}. + *. * @param e the element to visit * @param p a visitor-specified parameter * @return the result of {@code defaultAction} @@ -253,9 +264,10 @@ } /** - * Visits an {@code EXCEPTION_PARAMETER} variable element by calling - * {@code defaultAction}. + * Visits an {@code EXCEPTION_PARAMETER} variable element. * + * @implSpec This implementation calls {@code defaultAction}. + *. * @param e the element to visit * @param p a visitor-specified parameter * @return the result of {@code defaultAction} @@ -265,9 +277,10 @@ } /** - * Visits a {@code FIELD} variable element by calling - * {@code defaultAction}. + * Visits a {@code FIELD} variable element. * + * @implSpec This implementation calls {@code defaultAction}. + *. * @param e the element to visit * @param p a visitor-specified parameter * @return the result of {@code defaultAction} @@ -277,8 +290,9 @@ } /** - * Visits a {@code LOCAL_VARIABLE} variable element by calling - * {@code defaultAction}. + * Visits a {@code LOCAL_VARIABLE} variable element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -289,8 +303,9 @@ } /** - * Visits a {@code PARAMETER} variable element by calling - * {@code defaultAction}. + * Visits a {@code PARAMETER} variable element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -301,8 +316,9 @@ } /** - * Visits a {@code RESOURCE_VARIABLE} variable element by calling - * {@code visitUnknown}. + * Visits a {@code RESOURCE_VARIABLE} variable element. + * + * @implSpec This implementation calls {@code visitUnknown}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -315,7 +331,9 @@ } /** - * Visits an executable element, dispatching to the visit method + * {@inheritDoc} + * + * @implSpec This implementation dispatches to the visit method * for the specific {@linkplain ElementKind kind} of executable, * {@code CONSTRUCTOR}, {@code INSTANCE_INIT}, {@code METHOD}, or * {@code STATIC_INIT}. @@ -346,8 +364,9 @@ } /** - * Visits a {@code CONSTRUCTOR} executable element by calling - * {@code defaultAction}. + * Visits a {@code CONSTRUCTOR} executable element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -358,8 +377,9 @@ } /** - * Visits an {@code INSTANCE_INIT} executable element by calling - * {@code defaultAction}. + * Visits an {@code INSTANCE_INIT} executable element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -370,8 +390,9 @@ } /** - * Visits a {@code METHOD} executable element by calling - * {@code defaultAction}. + * Visits a {@code METHOD} executable element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -382,8 +403,9 @@ } /** - * Visits a {@code STATIC_INIT} executable element by calling - * {@code defaultAction}. + * Visits a {@code STATIC_INIT} executable element. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter @@ -393,12 +415,13 @@ return defaultAction(e, p); } - /** * {@inheritDoc} * * The element argument has kind {@code TYPE_PARAMETER}. * + * @implSpec This implementation calls {@code defaultAction}. + * * @param e {@inheritDoc} * @param p {@inheritDoc} * @return {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor7.java 2017-11-18 08:15:55.325063832 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor7.java 2017-11-18 08:15:55.012907819 -0800 @@ -99,8 +99,9 @@ } /** - * Visits a {@code RESOURCE_VARIABLE} variable element by calling - * {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor9.java 2017-11-18 08:15:55.949375861 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementKindVisitor9.java 2017-11-18 08:15:55.637219846 -0800 @@ -98,8 +98,9 @@ } /** - * Visits a {@code ModuleElement} by calling {@code - * defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter --- old/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner6.java 2017-11-18 08:15:56.545673887 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner6.java 2017-11-18 08:15:56.237519872 -0800 @@ -164,7 +164,9 @@ } /** - * {@inheritDoc} This implementation scans the enclosed elements. + * {@inheritDoc} + * + * @implSpec This implementation scans the enclosed elements. * * @param e {@inheritDoc} * @param p {@inheritDoc} @@ -175,7 +177,9 @@ } /** - * {@inheritDoc} This implementation scans the enclosed elements. + * {@inheritDoc} + * + * @implSpec This implementation scans the enclosed elements. * * @param e {@inheritDoc} * @param p {@inheritDoc} @@ -188,7 +192,7 @@ /** * {@inheritDoc} * - * This implementation scans the enclosed elements, unless the + * @implSpec This implementation scans the enclosed elements, unless the * element is a {@code RESOURCE_VARIABLE} in which case {@code * visitUnknown} is called. * @@ -204,7 +208,9 @@ } /** - * {@inheritDoc} This implementation scans the parameters. + * {@inheritDoc} + * + * @implSpec This implementation scans the parameters. * * @param e {@inheritDoc} * @param p {@inheritDoc} @@ -215,7 +221,9 @@ } /** - * {@inheritDoc} This implementation scans the enclosed elements. + * {@inheritDoc} + * + * @implSpec This implementation scans the enclosed elements. * * @param e {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner7.java 2017-11-18 08:15:57.161981914 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner7.java 2017-11-18 08:15:56.853827901 -0800 @@ -112,7 +112,9 @@ } /** - * This implementation scans the enclosed elements. + * {@inheritDoc} + * + * @implSpec This implementation scans the enclosed elements. * * @param e {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner9.java 2017-11-18 08:15:57.774287941 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementScanner9.java 2017-11-18 08:15:57.462131927 -0800 @@ -111,8 +111,9 @@ } /** - * Visits a {@code ModuleElement} by scanning the enclosed - * elements. + * {@inheritDoc} + * + * @implSpec This implementation scans the enclosed elements. * * @param e the element to visit * @param p a visitor-specified parameter --- old/src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java 2017-11-18 08:15:58.378589967 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java 2017-11-18 08:15:58.070435955 -0800 @@ -113,9 +113,10 @@ } /** - * The default action for visit methods. The implementation in - * this class just returns {@link #DEFAULT_VALUE}; subclasses will - * commonly override this method. + * The default action for visit methods. + * + * @implSpec The implementation in this class just returns {@link + * #DEFAULT_VALUE}; subclasses will commonly override this method. * * @param o the value of the annotation * @param p a visitor-specified parameter @@ -126,7 +127,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param b {@inheritDoc} * @param p {@inheritDoc} @@ -137,7 +140,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param b {@inheritDoc} * @param p {@inheritDoc} @@ -148,7 +153,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param c {@inheritDoc} * @param p {@inheritDoc} @@ -159,7 +166,10 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. + * * * @param d {@inheritDoc} * @param p {@inheritDoc} @@ -170,7 +180,10 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. + * * * @param f {@inheritDoc} * @param p {@inheritDoc} @@ -181,7 +194,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param i {@inheritDoc} * @param p {@inheritDoc} @@ -192,7 +207,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param i {@inheritDoc} * @param p {@inheritDoc} @@ -203,7 +220,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param s {@inheritDoc} * @param p {@inheritDoc} @@ -214,7 +233,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param s {@inheritDoc} * @param p {@inheritDoc} @@ -225,7 +246,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -236,7 +259,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param c {@inheritDoc} * @param p {@inheritDoc} @@ -247,7 +272,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param a {@inheritDoc} * @param p {@inheritDoc} @@ -258,7 +285,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param vals {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor6.java 2017-11-18 08:15:59.006903995 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor6.java 2017-11-18 08:15:58.690745981 -0800 @@ -112,9 +112,10 @@ DEFAULT_VALUE = defaultValue; } /** - * The default action for visit methods. The implementation in - * this class just returns {@link #DEFAULT_VALUE}; subclasses will - * commonly override this method. + * The default action for visit methods. + * + * @implSpec The implementation in this class just returns {@link + * #DEFAULT_VALUE}; subclasses will commonly override this method. * * @param e the element to process * @param p a visitor-specified parameter @@ -125,22 +126,26 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return the result of {@code defaultAction} + * @return {@inheritDoc} */ public R visitPackage(PackageElement e, P p) { return defaultAction(e, p); } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return the result of {@code defaultAction} + * @return {@inheritDoc} */ public R visitType(TypeElement e, P p) { return defaultAction(e, p); @@ -149,13 +154,13 @@ /** * {@inheritDoc} * - * This implementation calls {@code defaultAction}, unless the + * @implSpec This implementation calls {@code defaultAction}, unless the * element is a {@code RESOURCE_VARIABLE} in which case {@code * visitUnknown} is called. * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return the result of {@code defaultAction} or {@code visitUnknown} + * @return {@inheritDoc} */ public R visitVariable(VariableElement e, P p) { if (e.getKind() != ElementKind.RESOURCE_VARIABLE) @@ -165,22 +170,26 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return the result of {@code defaultAction} + * @return {@inheritDoc} */ public R visitExecutable(ExecutableElement e, P p) { return defaultAction(e, p); } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return the result of {@code defaultAction} + * @return {@inheritDoc} */ public R visitTypeParameter(TypeParameterElement e, P p) { return defaultAction(e, p); --- old/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor7.java 2017-11-18 08:15:59.623212022 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor7.java 2017-11-18 08:15:59.315058009 -0800 @@ -95,11 +95,13 @@ } /** - * This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} - * @return the result of {@code defaultAction} + * @return {@inheritDoc} */ @Override public R visitVariable(VariableElement e, P p) { --- old/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor9.java 2017-11-18 08:16:00.239520049 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor9.java 2017-11-18 08:15:59.927364035 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -94,12 +94,14 @@ } /** - * Visits a {@code ModuleElement} by calling {@code + * {@inheritDoc} + * + * @implSpec Visits a {@code ModuleElement} by calling {@code * defaultAction}. * * @param e the element to visit * @param p a visitor-specified parameter - * @return the result of {@code defaultAction} + * @return {@inheritDoc} */ @Override public R visitModule(ModuleElement e, P p) { --- old/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java 2017-11-18 08:16:00.855828076 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java 2017-11-18 08:16:00.547674063 -0800 @@ -113,9 +113,10 @@ } /** - * The default action for visit methods. The implementation in - * this class just returns {@link #DEFAULT_VALUE}; subclasses will - * commonly override this method. + * The default action for visit methods. + * + * @implSpec The implementation in this class just returns {@link + * #DEFAULT_VALUE}; subclasses will commonly override this method. * * @param e the type to process * @param p a visitor-specified parameter @@ -126,7 +127,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -139,6 +142,8 @@ /** * {@inheritDoc} This implementation calls {@code defaultAction}. * + * @implSpec This implementation calls {@code defaultAction}. + * * @param t {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} @@ -148,7 +153,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -159,7 +166,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -170,7 +179,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -181,7 +192,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -192,7 +205,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -203,7 +218,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} @@ -214,7 +231,9 @@ } /** - * {@inheritDoc} This implementation calls {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor7.java 2017-11-18 08:16:01.544172107 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor7.java 2017-11-18 08:16:01.204002092 -0800 @@ -95,8 +95,9 @@ } /** - * This implementation visits a {@code UnionType} by calling - * {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor8.java 2017-11-18 08:16:02.164482134 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/SimpleTypeVisitor8.java 2017-11-18 08:16:01.856328120 -0800 @@ -93,8 +93,9 @@ } /** - * This implementation visits an {@code IntersectionType} by calling - * {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor6.java 2017-11-18 08:16:02.804802163 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor6.java 2017-11-18 08:16:02.484642148 -0800 @@ -105,7 +105,9 @@ } /** - * Visits a primitive type, dispatching to the visit method for + * {@inheritDoc} + * + * @implSpec This implementation dispatches to the visit method for * the specific {@linkplain TypeKind kind} of primitive type: * {@code BOOLEAN}, {@code BYTE}, etc. * @@ -147,8 +149,9 @@ } /** - * Visits a {@code BOOLEAN} primitive type by calling - * {@code defaultAction}. + * Visits a {@code BOOLEAN} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -159,8 +162,9 @@ } /** - * Visits a {@code BYTE} primitive type by calling - * {@code defaultAction}. + * Visits a {@code BYTE} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -171,8 +175,9 @@ } /** - * Visits a {@code SHORT} primitive type by calling - * {@code defaultAction}. + * Visits a {@code SHORT} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -183,8 +188,9 @@ } /** - * Visits an {@code INT} primitive type by calling - * {@code defaultAction}. + * Visits an {@code INT} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -195,8 +201,9 @@ } /** - * Visits a {@code LONG} primitive type by calling - * {@code defaultAction}. + * Visits a {@code LONG} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -207,8 +214,9 @@ } /** - * Visits a {@code CHAR} primitive type by calling - * {@code defaultAction}. + * Visits a {@code CHAR} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -219,8 +227,9 @@ } /** - * Visits a {@code FLOAT} primitive type by calling - * {@code defaultAction}. + * Visits a {@code FLOAT} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -231,8 +240,9 @@ } /** - * Visits a {@code DOUBLE} primitive type by calling - * {@code defaultAction}. + * Visits a {@code DOUBLE} primitive type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -243,7 +253,9 @@ } /** - * Visits a {@link NoType} instance, dispatching to the visit method for + * {@inheritDoc} + * + * @implSpec This implementation dispatches to the visit method for * the specific {@linkplain TypeKind kind} of pseudo-type: * {@code VOID}, {@code PACKAGE}, or {@code NONE}. * @@ -270,8 +282,9 @@ } /** - * Visits a {@link TypeKind#VOID VOID} pseudo-type by calling - * {@code defaultAction}. + * Visits a {@link TypeKind#VOID VOID} pseudo-type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -282,8 +295,9 @@ } /** - * Visits a {@link TypeKind#PACKAGE PACKAGE} pseudo-type by calling - * {@code defaultAction}. + * Visits a {@link TypeKind#PACKAGE PACKAGE} pseudo-type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter @@ -294,8 +308,9 @@ } /** - * Visits a {@link TypeKind#NONE NONE} pseudo-type by calling - * {@code defaultAction}. + * Visits a {@link TypeKind#NONE NONE} pseudo-type. + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t the type to visit * @param p a visitor-specified parameter --- old/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor7.java 2017-11-18 08:16:03.437118190 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor7.java 2017-11-18 08:16:03.116958176 -0800 @@ -96,8 +96,9 @@ } /** - * This implementation visits a {@code UnionType} by calling - * {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc} --- old/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor8.java 2017-11-18 08:16:04.049424217 -0800 +++ new/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor8.java 2017-11-18 08:16:03.741270204 -0800 @@ -94,8 +94,9 @@ } /** - * This implementation visits an {@code IntersectionType} by calling - * {@code defaultAction}. + * {@inheritDoc} + * + * @implSpec This implementation calls {@code defaultAction}. * * @param t {@inheritDoc} * @param p {@inheritDoc}