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

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

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

import com.belteshazzar.jquery.Offset;
import com.belteshazzar.jquery.functions.IntOffsetOffsetFunction;

import netscape.javascript.JSObject;

public class IntOffsetOffsetFunctionCaller {

	private IntOffsetOffsetFunction function;

	public IntOffsetOffsetFunctionCaller(IntOffsetOffsetFunction function) {
		this.function = function;
	}

	public Offset call(int i, Object el) {
		return function.apply(i,new Offset((JSObject)el));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy