blob: a5a1ca4da2b23e31bfca4f5458b6c6aca4b0b711 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 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 - Initial API and implementation
**********************************************************************/
package org.eclipse.core.tests.runtime.jobs;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
/**
* A scheduling rule class that is a subset of RuleSetA
*
*/
public class RuleSetB extends RuleSetA {
private static int nextRule = 0;
public boolean contains(ISchedulingRule rule) {
return (rule instanceof RuleSetB);
}
/*public boolean isConflicting(ISchedulingRule rule) {
if(conflict) {
return (rule instanceof RuleSetA);
}
return (rule == this);
}*/
int incRule() {
return ++nextRule;
}
String getId() {
return "B";
}
}