blob: 6898cfec38caf67ac208ed7604b1a6c46baf7272 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2015 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime.jobs;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
/**
* A scheduling rule that always conflicts with an identical instance, but not with any
* other rules.
*/
public class IdentityRule implements ISchedulingRule {
private static int nextRule = 0;
private final int ruleNumber = nextRule++;
@Override
public boolean contains(ISchedulingRule rule) {
return rule == this;
}
@Override
public boolean isConflicting(ISchedulingRule rule) {
return rule == this;
}
@Override
public String toString() {
return "IdentityRule(" + ruleNumber + ")";
}
}