groostav
09/06/2020, 10:05 AMToggleGroup
has
private final ReadOnlyObjectWrapper<Toggle> selectedToggle = new ReadOnlyObjectWrapper<Toggle>() {
// Note: "set" is really what I want here. If the selectedToggle property
// is bound, then this whole chunk of code is bypassed, which is exactly
// what I want to do.
@Override public void set(final Toggle newSelectedToggle) {
"ReadOnly" with a setter because "its exactly what I wanted to do". crystal clear.Carlton Whitehead
09/06/2020, 11:53 AM