blob: 68d7fd33a8593dce3c37dda2d147199416fc841b [file] [log] [blame]
package org.eclipse.team.internal.ccvs.core;
import org.eclipse.team.core.RepositoryProviderType;
/**
* This class represents the CVS Provider's capabilities in the absence of a
* particular project.
*/
public class CVSTeamProviderType extends RepositoryProviderType {
/**
* @see org.eclipse.team.core.RepositoryProviderType#supportsProjectSetImportRelocation()
*/
public boolean supportsProjectSetImportRelocation() {
return false;
}
}