sclass CollectionInConcept<E> extends NotifyingCollection<E> {
  Concept cc;

  *() {} // for persistence
  *(Collection<E> c, Concept cc) {
    super(c);
    this.cc = cc;
  }

  void change() { if (cc != null) cc.change(); }
}