blob: 0e0e264caa57a2910b5f64b16fee415253639f31 [file] [log] [blame]
package org.eclipse.jface.databinding.conformance.util;
import org.eclipse.core.databinding.observable.Realm;
/**
* Allows for the toggling of the current status of the realm. The
* asyncExec(...) implementations do nothing.
*
* @since 3.2
*/
public class CurrentRealm extends Realm {
private boolean current;
public CurrentRealm() {
this(false);
}
public CurrentRealm(boolean current) {
this.current = current;
}
public boolean isCurrent() {
return current;
}
public void setCurrent(boolean current) {
this.current = current;
}
protected void syncExec(Runnable runnable) {
super.syncExec(runnable);
}
public void asyncExec(Runnable runnable) {
throw new UnsupportedOperationException(
"CurrentRealm does not support asyncExec(Runnable)."); //$NON-NLS-1$
}
protected static Realm setDefault(Realm realm) {
return Realm.setDefault(realm);
}
}