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

The classes in the MusicElement composite

/user/normark/oop-csharp-1/sources/c-sharp/patterns/composite/music-elements/Me.csThe abstract class MusicElement.


/user/normark/oop-csharp-1/sources/c-sharp/patterns/composite/music-elements/Note.csThe class Note.


/user/normark/oop-csharp-1/sources/c-sharp/patterns/composite/music-elements/Pause.csThe class Pause.


/user/normark/oop-csharp-1/sources/c-sharp/patterns/composite/music-elements/SME.csThe class SequentialMusicElement.


/user/normark/oop-csharp-1/sources/c-sharp/patterns/composite/music-elements/PME.csThe class ParallelMusicElement.