sclass CollectionInConcept extends NotifyingCollection { Concept cc; *() {} // for persistence *(Collection c, Concept cc) { super(c); this.cc = cc; } void change() { if (cc != null) cc.change(); } }