blob: 240571f4267ae9d5631ef1e4b909fd413cbd25df [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.ui.internal.editor.support;
import org.eclipse.ant.ui.internal.editor.outline.ILocationProvider;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
public class TestLocationProvider implements ILocationProvider {
private String buildFileName;
public TestLocationProvider(String buildFileName) {
this.buildFileName= buildFileName;
}
/* (non-Javadoc)
* @see org.eclipse.ant.ui.internal.editor.outline.ILocationProvider#getLocation()
*/
public IPath getLocation() {
return new Path(buildFileName);
}
}