blob: f40dc8200bcf92d330b975fedf853443483fde8d [file] [log] [blame]
package java.lang.invoke;
public class MethodHandles {
public static final class Lookup {
public MethodHandle findVirtual(Class<?> refc, String name,
MethodType type) throws NoSuchMethodException,
IllegalAccessException {
return null;
}
public MethodHandle findStatic(Class<?> refc, String name,
MethodType type) throws NoSuchMethodException,
IllegalAccessException {
return null;
}
}
public static Lookup lookup() {
return null;
}
}