blob: c9d7a05d3a233f234ab118359aa797e9121a4d7b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.lang.groovy.interpreter;
import org.eclipse.ease.IScriptEngine;
import org.eclipse.ease.IScriptEngineLaunchExtension;
/**
* Groovy loader. Loads initial environment module.
*/
public class GroovyEnvironementBootStrapper implements IScriptEngineLaunchExtension {
@Override
public void createEngine(final IScriptEngine engine) {
// load environment module
engine.executeAsync("import org.eclipse.ease.modules.EnvironmentModule");
engine.executeAsync("new org.eclipse.ease.modules.EnvironmentModule().bootstrap()");
}
}