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

org.reactfx.inhibeans.collection.Collections Maven / Gradle / Ivy

package org.reactfx.inhibeans.collection;

import org.reactfx.collection.LiveList;

@Deprecated
public final class Collections {

    // private constructor to prevent instantiation
    private Collections() {}

    /**
     * Creates an ObservableList wrapper that is able to temporarily block
     * list change notifications.
     * @param delegate the underlying observable list.
     * @deprecated Use {@link LiveList#suspendable(javafx.collections.ObservableList)} instead.
     */
    @Deprecated
    public static  ObservableList wrap(javafx.collections.ObservableList delegate) {
        return LiveList.suspendable(delegate);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy