Open mnylen opened 13 years ago
Schedule currently knows that it's divided into days and the days contain events. This is implemented using a HashMap with Days as keys and ArrayList<Event>s as values.
Schedule
HashMap
Day
ArrayList<Event>
In ideal case Schedule would know only that it has many Events.
Events
Hidden many aspects of the internal implementation of Schedule.
Schedule
currently knows that it's divided into days and the days contain events. This is implemented using aHashMap
withDay
s as keys andArrayList<Event>
s as values.In ideal case Schedule would know only that it has many
Events
.