package bluej.utility.javafx; import threadchecker.OnThread; import threadchecker.Tag;
| Equivalent to Supplier, but clearer (including to plugin) that it runs on FX thread | @FunctionalInterface public interface FXSupplier<T>{ @OnThread(Tag.FX) T get(); }