blob: dacb5997a181b8387e3b1bc5c0e2d70924a82b8f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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.wst.validation.internal.core;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
public class EmptySchedulingRule implements ISchedulingRule {
public boolean contains(ISchedulingRule rule)
{
return rule == this;
}
public boolean isConflicting(ISchedulingRule rule) {
return rule == this;
}
}