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

com.belteshazzar.jquery.functions.callers.IntElementFunctionCaller Maven / Gradle / Ivy

The newest version!
package com.belteshazzar.jquery.functions.callers;

import org.w3c.dom.Element;

import com.belteshazzar.jquery.functions.IntElementFunction;

public class IntElementFunctionCaller {

	private IntElementFunction function;

	public IntElementFunctionCaller(IntElementFunction function) {
		this.function = function;
	}

	public Element call(int i) {
		return function.apply(i);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy