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

org.molgenis.js.sandbox.SandboxWrapFactory Maven / Gradle / Ivy

package org.molgenis.js.sandbox;

import org.mozilla.javascript.Context;
import org.mozilla.javascript.Scriptable;
import org.mozilla.javascript.WrapFactory;

/**
 * A {@link WrapFactory} that ensures {@link org.mozilla.javascript.NativeJavaObject} instances are of the
 * {@link SandboxNativeJavaObject} variety.
 */
public class SandboxWrapFactory extends WrapFactory
{

	@Override
	public Scriptable wrapAsJavaObject(Context cx, Scriptable scope, Object javaObject, Class staticType)
	{
		return new SandboxNativeJavaObject(scope, javaObject, staticType);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy