https://github.com/csaba79-coder/innerclasschallengetimbuchalkaudemy
Inner Class challenge based on https://github.com/Csaba79-coder/PlaylistForSongs
https://github.com/csaba79-coder/innerclasschallengetimbuchalkaudemy
innerclass
Last synced: 8 days ago
JSON representation
Inner Class challenge based on https://github.com/Csaba79-coder/PlaylistForSongs
- Host: GitHub
- URL: https://github.com/csaba79-coder/innerclasschallengetimbuchalkaudemy
- Owner: Csaba79-coder
- Created: 2022-03-16T16:59:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-16T17:27:16.000Z (over 4 years ago)
- Last Synced: 2025-07-17T07:52:32.783Z (11 months ago)
- Topics: innerclass
- Language: Java
- Homepage: https://www.udemy.com/course/java-the-complete-java-developer-course/
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InnerClassChallengeTimBuchalkaUdemy
Inner Class challenge based on https://github.com/Csaba79-coder/PlaylistForSongs
// Modify the playlist challenge so that the model.Album class uses an inner class.
// Instead of using an ArrayList to hold its tracks, it will use an inner class called SongList
// The inner SongList class will use an ArrayList and will provide a method to add a song.
// It will also provide findSong() methods which will be used by the containing model.Album class
// to add songs to the playlist.
// Neither the model.Song class nor the Main class should be changed.