java.lang.invoke.MethodHandles Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-mt-jre-emulation Show documentation
Show all versions of gwt-mt-jre-emulation Show documentation
Additional jre emulation classes for gwt and j2cl.
package java.lang.invoke;
/**
* method handlers dummy implementation for GWT.
*
* @author Manfred Tremmel
*
*/
public class MethodHandles {
private MethodHandles() {} // do not instantiate
public static Lookup lookup() {
return new Lookup();
}
public static final class Lookup {
}
}