blob: 843ca1ea181f81456708b6b64d43f76076dc18f4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.model;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
/**
* A simple job scheduling rule for serializing jobs for an ICVSRepositoryLocation
*/
public class RepositoryLocationSchedulingRule implements ISchedulingRule {
ICVSRepositoryLocation location;
public RepositoryLocationSchedulingRule(ICVSRepositoryLocation location) {
this.location = location;
}
public boolean isConflicting(ISchedulingRule rule) {
if(rule instanceof RepositoryLocationSchedulingRule) {
return ((RepositoryLocationSchedulingRule)rule).location.equals(location);
}
return false;
}
public boolean contains(ISchedulingRule rule) {
return isConflicting(rule);
}
}