Class JavaFXSafeProxyCreator


  • public class JavaFXSafeProxyCreator
    extends Object
    This facility class create a thread-safe proxy for the JavaFX delegate (controller). Thread-safe means that it can be called by any thread and the JavaFX UI related stuff will be safely invoked in the JavaFX UI Thread. It is usually used in this way:
     // This is a Spring bean
     public class JavaFxFooBarPresentation implements FooBarPresentation
       {
         private static final String FXML_URL = "/my/package/javafx/FooBar.fxml";
    Author:
    Fabrizio Giudici