Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
FX.deferAction(new Function0<Void>() { @Override public Void invoke() { //Some code here return null; } });
コードを javafx 1.3 から javafx 2.1 に変換しましたが、この問題に直面しています。javafx 2.1 でのこの問題の解決策は何ですか?
javafx.application.Platform.runLater(new Runnable() { public void run() { // some code here } });