All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ssssssss.script.runtime.handle.MethodCallSite Maven / Gradle / Ivy

The newest version!
package org.ssssssss.script.runtime.handle;

import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodType;
import java.lang.invoke.MutableCallSite;

public class MethodCallSite extends MutableCallSite {

	MethodHandles.Lookup caller;

	String methodName;

	Class targetClass;

	MethodHandle fallback;

	public MethodCallSite(MethodHandles.Lookup caller, String methodName, MethodType type, Class targetClass) {
		super(type);
		this.caller = caller;
		this.methodName = methodName;
		this.targetClass = targetClass;
	}

	public MethodHandle findStatic(MethodType methodType) throws NoSuchMethodException, IllegalAccessException {
		return findStatic(this.methodName, methodType);
	}

	public MethodHandle findStatic(String name, MethodType methodType) throws NoSuchMethodException, IllegalAccessException {
		return this.caller.findStatic(this.targetClass, name, methodType);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy