Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.
/ jdk21 Public archive

8310814: Clarify the targetName parameter of Lookup::findClass #136

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -2844,10 +2844,16 @@ public MethodHandle findConstructor(Class<?> refc, MethodType type) throws NoSuc
* Such a resolution, as specified in JVMS {@jvms 5.4.3.1}, attempts to locate and load the class,
* and then determines whether the class is accessible to this lookup object.
* <p>
* For a class or an interface, the name is the {@linkplain ClassLoader##binary-name binary name}.
* For an array class of {@code n} dimensions, the name begins with {@code n} occurrences
* of {@code '['} and followed by the element type as encoded in the
* {@linkplain Class##nameFormat table} specified in {@link Class#getName}.
* <p>
* The lookup context here is determined by the {@linkplain #lookupClass() lookup class},
* its class loader, and the {@linkplain #lookupModes() lookup modes}.
*
* @param targetName the fully qualified name of the class to be looked up.
* @param targetName the {@linkplain ClassLoader##binary-name binary name} of the class
* or the string representing an array class
* @return the requested class.
* @throws SecurityException if a security manager is present and it
* <a href="MethodHandles.Lookup.html#secmgr">refuses access</a>