Here you can find the source of toScriptBindings(Map
public static Bindings toScriptBindings(Map<String, Object> context)
//package com.java2s; //License from project: Open Source License import java.util.Map; import javax.script.Bindings; import javax.script.SimpleBindings; public class Main { public static Bindings toScriptBindings(Map<String, Object> context) { return new SimpleBindings(context); }// w w w . ja v a 2 s. c o m }