import javafx.collections.FXCollections;
import javafx.collections.ObservableList;

public class Test {

    public static void main(String[] args) {
        ObservableList<String> list = FXCollections.observableArrayList();
        System.out.println(list.setAll()); // prints "true" even though the list was not modified
    }

} 