blob: fc5f34b086695e27ecaef34ffd76aa2327cd3f71 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.team.tests.core;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.team.core.RepositoryProvider;
/**
* This class is used to text resource linking
*/
public class RepositoryProviderWithLinking extends RepositoryProvider {
final public static String TYPE_ID = "org.eclipse.team.tests.core.linking";
private static boolean canHandleLinking = false;
/**
* @see org.eclipse.team.core.RepositoryProvider#configureProject()
*/
public void configureProject() throws CoreException {
}
/**
* @see org.eclipse.team.core.RepositoryProvider#getID()
*/
public String getID() {
return TYPE_ID;
}
/**
* @see org.eclipse.core.resources.IProjectNature#deconfigure()
*/
public void deconfigure() throws CoreException {
}
/**
* Sets the canHandleLinking.
* @param canHandleLinking The canHandleLinking to set
*/
public static void setCanHandleLinking(boolean canHandleLinking) {
RepositoryProviderWithLinking.canHandleLinking = canHandleLinking;
}
/**
* @see org.eclipse.team.core.RepositoryProvider#canHandleLinkedResources()
*/
public boolean canHandleLinkedResources() {
return canHandleLinking;
}
}