void |
TimelineModel.add(TimelineEvent<E> event,
TimelineUpdater timelineUpdater) |
Adds a given event to the model with UI update.
|
void |
TimelineModel.addAll(Collection<TimelineEvent<E>> events,
TimelineUpdater timelineUpdater) |
Adds all given events to the model with UI update.
|
void |
TimelineModel.clear(TimelineUpdater timelineUpdater) |
Clears the timeline model with UI update (no events are available after that)
|
void |
TimelineModel.delete(TimelineEvent<E> event,
TimelineUpdater timelineUpdater) |
Deletes a given event in the model with UI update.
|
void |
TimelineModel.deleteAll(Collection<TimelineEvent<E>> events,
TimelineUpdater timelineUpdater) |
Deletes all given events in the model with UI update.
|
TimelineEvent<E> |
TimelineModel.merge(TimelineEvent<E> event,
Collection<TimelineEvent<E>> events,
TimelineUpdater timelineUpdater) |
Merge the given one event with the given collection of events with UI update.
|
void |
TimelineModel.select(TimelineEvent<E> event,
TimelineUpdater timelineUpdater) |
Selects a given event in UI visually.
|
void |
TimelineModel.update(TimelineEvent<E> event,
TimelineUpdater timelineUpdater) |
Updates a given event in the model with UI update.
|
void |
TimelineModel.updateAll(Collection<TimelineEvent<E>> events,
TimelineUpdater timelineUpdater) |
Updates all given events in the model with UI update.
|