blob: 68a8abe2adfb124f382be58d1cbd67cbc8b2ed86 [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.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.dltk.core.BuildpathContainerInitializer;
import org.eclipse.dltk.core.DLTKCore;
import org.eclipse.dltk.core.IBuildpathContainer;
import org.eclipse.dltk.core.IScriptProject;
import org.eclipse.dltk.core.environment.EnvironmentManager;
import org.eclipse.dltk.core.environment.EnvironmentPathUtils;
public class TestieContainerInitializer extends BuildpathContainerInitializer {
@Override
public void initialize(IPath containerPath, IScriptProject project)
throws CoreException {
int size = containerPath.segmentCount();
IPath path = EnvironmentPathUtils.getFullPath(
EnvironmentManager.getEnvironment(project),
containerPath.removeFirstSegments(1));
path = path.makeAbsolute();
if (size > 0) {
TestieContainer container = new TestieContainer(path);
DLTKCore.setBuildpathContainer(containerPath,
new IScriptProject[] { project },
new IBuildpathContainer[] { container }, null);
}
}
}