```ObservableList<String> list = FXCollectio...
# tornadofx
a
Copy code
ObservableList<String> list = FXCollections.observableArrayList("A", "B", "C");
ReadOnlyListProperty<String> readOnlyListProperty = new ReadOnlyListWrapper<>(list);