ObservableList<String> src = FXCollections.observableArrayList();
ObservableList<Integer> other = FXCollections.observableArrayList();
//Create binding.
src.addAll("1", "2", "3");
System.out.println(other);//Should print [1, 2, 3].
Above I have an idea of what I am trying to do.
As items are added and removed to the src list, the other list is synchronized along with it. Every item in the src list has an equivalent to the items in the other list. The other list contains "translated" values from the src list, of course.
Many have recommended using EasyBind, but I would like to understand how to do this manually first.