blob: 666ecbd8e54f70aacbd8f195c6ff6b43ae07b5bb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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
*
*******************************************************************************/
package org.eclipse.dltk.core.tests.buildpath;
import org.eclipse.core.runtime.IPath;
import org.eclipse.dltk.core.DLTKCore;
import org.eclipse.dltk.core.IBuildpathContainer;
import org.eclipse.dltk.core.IBuildpathEntry;
public class TestieContainer implements IBuildpathContainer {
private IPath fPath;
public TestieContainer(IPath srcPath) {
this.fPath = srcPath;
}
@Override
public IBuildpathEntry[] getBuildpathEntries() {
return new IBuildpathEntry[] { DLTKCore.newExtLibraryEntry(this.fPath) };
}
@Override
public String getDescription() {
return "Testie Buildpath Container";
}
@Override
public int getKind() {
return IBuildpathContainer.K_DEFAULT_SYSTEM;
}
@Override
public IPath getPath() {
return fPath;
}
}