static Set setWithNotify(final Runnable onChange) { ret new NotifyingSet(new HashSet) { void change() { onChange.run(); } }; }