Skip to content

Instantly share code, notes, and snippets.

@grkvlt
Created October 12, 2017 15:03
Show Gist options
  • Save grkvlt/0744489e3758bd19b7fd00037b26b90e to your computer and use it in GitHub Desktop.
Save grkvlt/0744489e3758bd19b7fd00037b26b90e to your computer and use it in GitHub Desktop.
Exploring Iterated Function Systems
static <T> Property<T> attach(JComboBox<T> field) {
return new Property<T>() {
@SuppressWarnings(“unchecked”)
@Override
public T get() {
return (T) field.getSelectedItem();
}
@Override
public void set(T value) {
field.setSelectedItem(value);
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment