Hi,
is there a good reason why not just rename Announcement to Event since everyone is calling it that anyways?
Everybody (almost irrespective of language) understands what an event, whilst Announcement is a new vocabulary.
Most people when subclassing will anyways do
Announcement subclass: MyEvent
and so forth.
Is there a benefit in naming it Announcement? Doesn't it just add more confusion?
For example Bloc has
Announcement subclass: #BlAbstractEvent
and
Announcement subclass: #BlMorphAnnouncement
whilst Event is clearly favored.
BlMorphAnnouncement allSubclasses size. "5"
BlAbstractEvent allSubclasses size. "60"
(Why does Bloc has this separation anyways?)
Peter