blob: 9a703bdb7bbf7d1dc77d183938f7b1f3679c7110 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2009 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.launching.debug;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.sourcelookup.ISourceContainer;
import org.eclipse.debug.core.sourcelookup.ISourcePathComputerDelegate;
/**
* Computes the default source lookup path for an Ant launch configuration. The default source lookup is a container that knows how to map the fully
* qualified file system paths to either the <code>IFile</code> within the workspace or a <code>LocalFileStorage</code> for buildfiles not in the
* workspace.
*/
public class AntSourcePathComputerDelegate implements ISourcePathComputerDelegate {
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.sourcelookup.ISourcePathComputerDelegate#computeSourceContainers(org.eclipse.debug.core.ILaunchConfiguration,
* org.eclipse.core.runtime.IProgressMonitor)
*/
@Override
public ISourceContainer[] computeSourceContainers(ILaunchConfiguration configuration, IProgressMonitor monitor) throws CoreException {
return new ISourceContainer[] { new AntSourceContainer() };
}
}