public ScriptEngine getScriptEngine() {
LocalContextScope scope = SystemPropertyCatcher.getScope(LocalContextScope.SINGLETON);
LocalVariableBehavior behavior = SystemPropertyCatcher.getBehavior(LocalVariableBehavior.GLOBAL);
boolean lazy = SystemPropertyCatcher.isLazy(true);
ScriptingContainer container = createScriptingContainer(scope, behavior, lazy);
//new ScriptingContainer(scope, behavior, lazy);
SystemPropertyCatcher.setClassLoader(container);
SystemPropertyCatcher.setConfiguration(container);
JRubyEngine engine = new JRubyEngine(container, this);
return (ScriptEngine)engine;