--- old/src/java.base/share/classes/jdk/internal/loader/NativeLibrary.java 2020-03-20 09:16:16.000000000 -0700 +++ new/src/java.base/share/classes/jdk/internal/loader/NativeLibrary.java 2020-03-20 09:16:16.000000000 -0700 @@ -31,15 +31,18 @@ public interface NativeLibrary { String name(); - /* + /** * Finds the address of the entry of the given name. Returns 0 * if not found. + * + * @param name the name of the symbol to be found */ long find(String name); - /* + /** * Finds the address of the entry of the given name. * + * @param name the name of the symbol to be found * @throws NoSuchMethodException if the named entry is not found. */ default long lookup(String name) throws NoSuchMethodException {