blob: 229d5fc55375704a91b15f41a131843f7f2331ec [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.jface.databinding.conformance.util;
import org.eclipse.core.databinding.observable.Realm;
/**
* Realm that will delegate to another for all operations except calls to
* {@link #isCurrent()}. The current status can be set by the consumer to
* enable testing of realm checks.
*
* @since 3.2
*/
public class DelegatingRealm extends CurrentRealm {
private Realm realm;
public DelegatingRealm(Realm realm) {
this.realm = realm;
}
protected void syncExec(Runnable runnable) {
realm.exec(runnable);
}
public void asyncExec(Runnable runnable) {
realm.asyncExec(runnable);
}
}