All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.odell.glazedlists.javafx.GlazedListsFx Maven / Gradle / Ivy

/* Glazed Lists                                                 (c) 2003-2014 */
/* http://publicobject.com/glazedlists/                      publicobject.com,*/
/*                                                     O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.javafx;

import ca.odell.glazedlists.EventList;
import ca.odell.glazedlists.TransformedList;

/**
 * A factory for creating all sorts of JavaFx related objects to be used with Glazed Lists.
 *
 * @author Holger Brands
 */
public class GlazedListsFx {

    /**
     * Wraps the source in an {@link EventList} that fires all of its update
     * events from the JavaFX-application thread.
     */
    public static  TransformedList threadProxyList(EventList source) {
        return new JavaFxThreadProxyEventList(source);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy