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

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

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

import com.belteshazzar.jquery.functions.VoidFunction;
import com.belteshazzar.jquery.functions.VoidFunctionFunction;

public class VoidFunctionFunctionCaller {

	private VoidFunctionFunction function;

	public VoidFunctionFunctionCaller(VoidFunctionFunction function) {
		this.function = function;
	}

	public VoidFunction call() {
		return function.apply();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy