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

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

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

import com.belteshazzar.jquery.JQuery;
import com.belteshazzar.jquery.functions.IntJQueryFunction;

public class IntJQueryFunctionCaller {

	private IntJQueryFunction function;

	public IntJQueryFunctionCaller(IntJQueryFunction function) {
		this.function = function;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy