--- old/src/java.base/share/classes/java/lang/invoke/MethodHandles.java 2017-05-05 15:25:40.823331209 -0700 +++ new/src/java.base/share/classes/java/lang/invoke/MethodHandles.java 2017-05-05 15:25:40.691325445 -0700 @@ -265,12 +265,16 @@ * (Bytecode behaviors are described in section 5.4.3.5 of the Java Virtual Machine Specification.) * Here is a summary of the correspondence between these factory methods and * the behavior of the resulting method handles: - * + *
+ * + * * * * * * + * + * * * * @@ -327,6 +331,7 @@ * * * + * *
lookup method behaviors
lookup expressionmemberbytecode behavior
{@link java.lang.invoke.MethodHandles.Lookup#findGetter lookup.findGetter(C.class,"f",FT.class)}{@code FT f;}{@code (T) this.f;}{@link java.lang.invoke.MethodHandles.Lookup#findClass lookup.findClass("C")}{@code class C { ... }}{@code C.class;}
* * Here, the type {@code C} is the class or interface being searched for a member,