Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin1.8/src/java/lang/invoke/MethodHandles.java')
-rw-r--r--JCL/converterJclMin1.8/src/java/lang/invoke/MethodHandles.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/JCL/converterJclMin1.8/src/java/lang/invoke/MethodHandles.java b/JCL/converterJclMin1.8/src/java/lang/invoke/MethodHandles.java
new file mode 100644
index 0000000000..f40dc8200b
--- /dev/null
+++ b/JCL/converterJclMin1.8/src/java/lang/invoke/MethodHandles.java
@@ -0,0 +1,21 @@
+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;
+ }
+}

Back to the top