// inner list can be a normal ArrayList static NotifyingList notifyingList(L innerList, Runnable onChange) { ret new NotifyingList(innerList) { void change() { onChange.run(); } }; } static NotifyingList notifyingList(Runnable onChange) { ret listWithNotify(onChange); }