Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin12/src/java/lang/invoke/MethodType.java')
-rw-r--r--JCL/converterJclMin12/src/java/lang/invoke/MethodType.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/JCL/converterJclMin12/src/java/lang/invoke/MethodType.java b/JCL/converterJclMin12/src/java/lang/invoke/MethodType.java
new file mode 100644
index 0000000000..90a46dc8fe
--- /dev/null
+++ b/JCL/converterJclMin12/src/java/lang/invoke/MethodType.java
@@ -0,0 +1,17 @@
+package java.lang.invoke;
+
+
+public final class MethodType {
+ public static MethodType methodType(Class<?> rtype, Class<?> ptype0,
+ Class<?>... ptypes) {
+ return null;
+ }
+
+ public static MethodType methodType(Class<?> rtype) {
+ return null;
+ }
+
+ public static MethodType genericMethodType(int objectArgCount) {
+ return null;
+ }
+}

Back to the top