blob: 0254583c2e77813aad0c00c8245b16ad0ae90f73 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.launching.environments;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jdt.launching.IVMInstall;
/**
* Analyzes vm installs for compatibility with execution environments.
* <p>
* An execution environment analyzer delegate is contributed in plug-in XML via
* the <code>org.eclipse.jdt.launching.executionEnvironments</code>
* extension point.
* </p>
* <p>
* Clients may implement this interface.
* </p>
* @since 3.2
*/
public interface IExecutionEnvironmentAnalyzerDelegate {
/**
* Analyzes the given vm install and returns a collection of compatible
* execution environments, possibly empty.
*
* @param vm vm install to analyze
* @param monitor progress monitor
* @return compatible execution environments, possibly empty
* @throws CoreException if an exception occurs analyzing the vm install
*/
public CompatibleEnvironment[] analyze(IVMInstall vm, IProgressMonitor monitor) throws CoreException;
}