Menu

[r44]: / GraphScript / trunk / ls / script / ScriptUtils.java  Maximize  Restore  History

Download this file

18 lines (14 with data), 255 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
package ls.script;
import ls.util.Utils;
public class ScriptUtils implements Scriptable
{
public String getBindingName()
{
return "Utils";
}
public void msg(String msg)
{
if (msg == null) msg = "null";
Utils.msg(msg);
}
}
MongoDB Logo MongoDB