Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 90a46dc8feabb06e52960e001e2fc1067f3e7f7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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