Lecture overview -- Keyboard shortcut: 'u'  Previous page: Implementation of MusicElement classes -- Keyboard shortcut: 'p'  Next page: A Composite example: IntSequence application -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home  Page 24 : 37
Object-oriented Programming in C#
Abstract classes, Interfaces, and Patterns
A Composite example: IntSequence

An integer sequence can either be a singular integer, an interval, or a composite sequence

An integer sequence has the operations Min, Max, and GetEnumerator

The class diagram of the IntSequence composite.