Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin19/src/java/lang/runtime/ObjectMethods.java')
-rw-r--r--JCL/converterJclMin19/src/java/lang/runtime/ObjectMethods.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/JCL/converterJclMin19/src/java/lang/runtime/ObjectMethods.java b/JCL/converterJclMin19/src/java/lang/runtime/ObjectMethods.java
new file mode 100644
index 000000000..7587fef8f
--- /dev/null
+++ b/JCL/converterJclMin19/src/java/lang/runtime/ObjectMethods.java
@@ -0,0 +1,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