--- old/src/java.base/share/classes/java/lang/reflect/AnnotatedArrayType.java 2020-08-04 19:40:34.957626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/AnnotatedArrayType.java 2020-08-04 19:40:34.549626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2020, 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 @@ -31,6 +31,7 @@ * array type, whose component type may itself represent the annotated use of a * type. * + * @jls 10.1 Array Types * @since 1.8 */ public interface AnnotatedArrayType extends AnnotatedType { --- old/src/java.base/share/classes/java/lang/reflect/AnnotatedParameterizedType.java 2020-08-04 19:40:35.689626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/AnnotatedParameterizedType.java 2020-08-04 19:40:35.293626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2020, 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 @@ -30,6 +30,7 @@ * of a parameterized type, whose type arguments may themselves represent * annotated uses of types. * + * @jls 4.5 Parameterized Types * @since 1.8 */ public interface AnnotatedParameterizedType extends AnnotatedType { --- old/src/java.base/share/classes/java/lang/reflect/AnnotatedType.java 2020-08-04 19:40:36.437626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/AnnotatedType.java 2020-08-04 19:40:36.045626973 -0700 @@ -37,6 +37,14 @@ * type annotations (JLS {@jls 9.7.4}) as the entity being * potentially annotated is a type. * + * @jls 4.1 The Kinds of Types and Values + * @jls 4.2 Primitive Types and Values + * @jls 4.3 Reference Types and Values + * @jls 4.4 Type Variables + * @jls 4.5 Parameterized Types + * @jls 4.8 Raw Types + * @jls 4.9 Intersection Types + * @jls 10.1 Array Types * @since 1.8 */ public interface AnnotatedType extends AnnotatedElement { --- old/src/java.base/share/classes/java/lang/reflect/AnnotatedTypeVariable.java 2020-08-04 19:40:37.173626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/AnnotatedTypeVariable.java 2020-08-04 19:40:36.777626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2020, 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 @@ -30,6 +30,7 @@ * type variable, whose declaration may have bounds which themselves represent * annotated uses of types. * + * @jls 4.4 Type Variables * @since 1.8 */ public interface AnnotatedTypeVariable extends AnnotatedType { --- old/src/java.base/share/classes/java/lang/reflect/AnnotatedWildcardType.java 2020-08-04 19:40:37.881626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/AnnotatedWildcardType.java 2020-08-04 19:40:37.485626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2020, 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 @@ -30,6 +30,7 @@ * wildcard type argument, whose upper or lower bounds may themselves represent * annotated uses of types. * + * @jls 4.5.1 Type Arguments of Parameterized Types * @since 1.8 */ public interface AnnotatedWildcardType extends AnnotatedType { --- old/src/java.base/share/classes/java/lang/reflect/GenericArrayType.java 2020-08-04 19:40:38.605626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/GenericArrayType.java 2020-08-04 19:40:38.213626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -28,6 +28,8 @@ /** * {@code GenericArrayType} represents an array type whose component * type is either a parameterized type or a type variable. + * + * @jls 10.1 Array Types * @since 1.5 */ public interface GenericArrayType extends Type { --- old/src/java.base/share/classes/java/lang/reflect/ParameterizedType.java 2020-08-04 19:40:39.341626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/ParameterizedType.java 2020-08-04 19:40:38.953626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -28,7 +28,7 @@ /** * ParameterizedType represents a parameterized type such as - * Collection<String>. + * {@code Collection}. * *

A parameterized type is created the first time it is needed by a * reflective method, as specified in this package. When a @@ -42,6 +42,7 @@ * an equals() method that equates any two instances that share the * same generic type declaration and have equal type parameters. * + * @jls 4.5 Parameterized Types * @since 1.5 */ public interface ParameterizedType extends Type { --- old/src/java.base/share/classes/java/lang/reflect/Type.java 2020-08-04 19:40:40.089626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/Type.java 2020-08-04 19:40:39.701626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -30,6 +30,14 @@ * programming language. These include raw types, parameterized types, * array types, type variables and primitive types. * + * @jls 4.1 The Kinds of Types and Values + * @jls 4.2 Primitive Types and Values + * @jls 4.3 Reference Types and Values + * @jls 4.4 Type Variables + * @jls 4.5 Parameterized Types + * @jls 4.8 Raw Types + * @jls 4.9 Intersection Types + * @jls 10.1 Array Types * @since 1.5 */ public interface Type { --- old/src/java.base/share/classes/java/lang/reflect/TypeVariable.java 2020-08-04 19:40:40.861626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/TypeVariable.java 2020-08-04 19:40:40.437626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -46,6 +46,7 @@ * @param the type of generic declaration that declared the * underlying type variable. * + * @jls 4.4 Type Variables * @since 1.5 */ public interface TypeVariable extends Type, AnnotatedElement { --- old/src/java.base/share/classes/java/lang/reflect/WildcardType.java 2020-08-04 19:40:41.613626973 -0700 +++ new/src/java.base/share/classes/java/lang/reflect/WildcardType.java 2020-08-04 19:40:41.205626973 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, 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 @@ -29,6 +29,7 @@ * WildcardType represents a wildcard type expression, such as * {@code ?}, {@code ? extends Number}, or {@code ? super Integer}. * + * @jls 4.5.1 Type Arguments of Parameterized Types * @since 1.5 */ public interface WildcardType extends Type {