sclass SelfNotifyingSet extends NotifyingSet { *() { super(new HashSet); } *(Set set) { super(set); } void change { notifyAll(); } }