*/
public ArrayList<TimePoint> getTimePoints() {
MessageBroker broker = extractMessageBroker();
ArrayList<TimePoint> timePoints = new ArrayList<TimePoint>();
try {
AdHocEventList adHocEventList = getEditor().getRepository().getAdHocEventList();
for (IAdHocEvent evt : adHocEventList) {
String localizedCaption = evt.getLocalizedCaption(broker);
TimePoint tp = new TimePoint(evt, localizedCaption);
timePoints.add(tp);
}