/****************************************************************************** * Copyright (C) 2013 Jonah Graham * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Jonah Graham <jonah@kichwacoders.com> - initial API and implementation ******************************************************************************/ package org.python.pydev.ui.pythonpathconf; public class IronpythonInterpreterProviderFactory extends AbstractInterpreterProviderFactory { @Override public IInterpreterProvider[] getInterpreterProviders(InterpreterType type) { if (type != IInterpreterProviderFactory.InterpreterType.IRONPYTHON) { return null; } return AlreadyInstalledInterpreterProvider.create("ipy", "ipy"); } }