blob: ccc5de3a84ca1221e46b6e027da5421d77c1374c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2008 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.launching;
import java.util.List;
import org.eclipse.dltk.core.IBuildpathEntry;
import org.eclipse.dltk.core.IScriptProject;
public interface IInterpreterContainerExtension {
/**
* <p>
* This method is called to customize (only add or remove elements,
* modification of existing objects is not allowed) the
* {@link IBuildpathEntry IBuildpathEntries} returned to the project.
* </p>
*
* <p>
* It's called for each project.
* </p>
*
* <p>
* Entries are initialized with the interpreter library locations.
* </p>
*/
void processEntres(IScriptProject project, List<IBuildpathEntry> entries);
}