blob: ca5915ac962a9f2218bb4e4d2cfbe861bcbb0917 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.core.internal.utility;
import java.io.Serializable;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.jpt.common.utility.internal.StringTools;
/**
* A job scheduling rule that conflicts only with itself.
*/
public final class SimpleSchedulingRule
implements ISchedulingRule, Serializable
{
private static final long serialVersionUID = 1L;
public SimpleSchedulingRule() {
super();
}
public boolean contains(ISchedulingRule rule) {
return rule == this;
}
public boolean isConflicting(ISchedulingRule rule) {
return rule == this;
}
@Override
public String toString() {
return StringTools.buildToStringFor(this);
}
}