return PydevPlugin.getIronpythonInterpreterManager();
}
@Override
protected void setInterpreterManager(String path) {
IronpythonInterpreterManager interpreterManager = new IronpythonInterpreterManager(this.getPreferences());
InterpreterInfo info = (InterpreterInfo) interpreterManager.createInterpreterInfo(TestDependent.IRONPYTHON_EXE,
new NullProgressMonitor(), false);
TestDependent.IRONPYTHON_EXE = info.executableOrJar;
if (path != null) {
info = new InterpreterInfo(info.getVersion(), info.executableOrJar,
PythonPathHelper.parsePythonPathFromStr(path, new ArrayList<String>()));
}
interpreterManager.setInfos(new IInterpreterInfo[] { info }, null, null);
PydevPlugin.setIronpythonInterpreterManager(interpreterManager);
}