mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8342698: Fix order of @param tags in module java.base
Reviewed-by: iris
This commit is contained in:
parent
51a7ff6594
commit
97c9212842
6 changed files with 18 additions and 18 deletions
|
@ -463,8 +463,8 @@ public class MethodHandles {
|
|||
* If there is a security manager, its {@code checkPermission} method
|
||||
* is called with a {@code ReflectPermission("suppressAccessChecks")} permission.
|
||||
* @param <T> the desired type of the result, either {@link Member} or a subtype
|
||||
* @param target a direct method handle to crack into symbolic reference components
|
||||
* @param expected a class object representing the desired result type {@code T}
|
||||
* @param target a direct method handle to crack into symbolic reference components
|
||||
* @return a reference to the method, constructor, or field object
|
||||
* @throws SecurityException if the caller is not privileged to call {@code setAccessible}
|
||||
* @throws NullPointerException if either argument is {@code null}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2014, 2024, 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
|
||||
|
@ -2371,9 +2371,9 @@ public abstract sealed class VarHandle implements Constable
|
|||
* Returns a {@linkplain VarHandleDesc} corresponding to a {@link VarHandle}
|
||||
* for an instance field.
|
||||
*
|
||||
* @param name the unqualified name of the field
|
||||
* @param declaringClass a {@link ClassDesc} describing the declaring class,
|
||||
* for field var handles
|
||||
* @param name the unqualified name of the field
|
||||
* @param fieldType a {@link ClassDesc} describing the type of the field
|
||||
* @return the {@linkplain VarHandleDesc}
|
||||
* @throws NullPointerException if any of the arguments are null
|
||||
|
@ -2390,9 +2390,9 @@ public abstract sealed class VarHandle implements Constable
|
|||
* Returns a {@linkplain VarHandleDesc} corresponding to a {@link VarHandle}
|
||||
* for a static field.
|
||||
*
|
||||
* @param name the unqualified name of the field
|
||||
* @param declaringClass a {@link ClassDesc} describing the declaring class,
|
||||
* for field var handles
|
||||
* @param name the unqualified name of the field
|
||||
* @param fieldType a {@link ClassDesc} describing the type of the field
|
||||
* @return the {@linkplain VarHandleDesc}
|
||||
* @throws NullPointerException if any of the arguments are null
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue