blob: aecb6d78fa6a8ec8fe1be57ae92bf85dccc760b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.tests.core;
import org.eclipse.core.resources.IFileModificationValidator;
import org.eclipse.core.resources.team.IMoveDeleteHook;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.team.core.RepositoryProvider;
public class RepositoryProviderBic extends RepositoryProvider {
final public static String NATURE_ID = "org.eclipse.team.tests.core.bic-provider";
private IMoveDeleteHook mdh;
private IFileModificationValidator mv;
@Override
public void configureProject() throws CoreException {
}
@Override
public String getID() {
return NATURE_ID;
}
@Override
public void deconfigure() throws CoreException {
}
@Override
public IFileModificationValidator getFileModificationValidator() {
return mv;
}
@Override
public IMoveDeleteHook getMoveDeleteHook() {
return mdh;
}
public void setModificationValidator(IFileModificationValidator mv) {
this.mv = mv;
}
public void setMoveDeleteHook(IMoveDeleteHook mdh) {
this.mdh = mdh;
}
}