Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/JFXRealm.java')
-rwxr-xr-xbundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/JFXRealm.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/JFXRealm.java b/bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/JFXRealm.java
new file mode 100755
index 000000000..8f3fdd3e6
--- /dev/null
+++ b/bundles/runtime/org.eclipse.fx.core.databinding/src/org/eclipse/fx/core/databinding/JFXRealm.java
@@ -0,0 +1,40 @@
+/*******************************************************************************
+ * Copyright (c) 2012 BestSolution.at 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:
+ * Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.fx.core.databinding;
+
+import javafx.application.Platform;
+
+import org.eclipse.core.databinding.observable.Realm;
+
+public class JFXRealm extends Realm {
+ public static void createDefault() {
+ setDefault(new JFXRealm());
+ }
+
+ @Override
+ public boolean isCurrent() {
+ return Platform.isFxApplicationThread();
+ }
+
+ @Override
+ public void asyncExec(Runnable runnable) {
+ Platform.runLater(runnable);
+ }
+
+ @Override
+ public void exec(Runnable runnable) {
+ if( isCurrent() ) {
+ runnable.run();
+ } else {
+ Platform.runLater(runnable);
+ }
+ }
+} \ No newline at end of file

Back to the top