Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7587fef8f0036ee5eee7be6de6d3bfd062ef888e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package java.lang.runtime;

import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.TypeDescriptor;

public class ObjectMethods {
    public static Object bootstrap(MethodHandles.Lookup lookup, String methodName, TypeDescriptor type,
                                   Class<?> recordClass,
                                   String names,
                                   MethodHandle... getters) throws Throwable {
    	return null;
    }
}

Back to the top