- Genre - Enum in <Unnamed>
-
The Genre enum is used by songs as an attribute.
- getArtist() - Method in class Album
-
This method is used to give the artist of the album.
- getArtist() - Method in class Song
-
This method is used to give the artist of the song.
- getAudioBooks() - Method in class Playlist
-
This method is used to print the each audiobooks contained in the audiobooks attribute of the playlist.
- getAuthor() - Method in class AudioBook
-
This method is used to give the author of the audiobook.
- getCategory() - Method in class AudioBook
-
This method is used to give the category of the audiobook.
- getContent() - Method in class MusicalElement
-
This method is used to give the content path of the element.
- getDate() - Method in class Album
-
This method is used to give the date of release of the album.
- getDuration() - Method in class Album
-
This method is used to give the duration of the album.
- getDuration() - Method in class MusicalElement
-
This method is used to give the duration of the element.
- getGenre() - Method in class Album
-
This method is used for the AG command in jMusicHub.
- getGenre() - Method in class Song
-
This method is used to give the genre of the song.
- getId() - Method in class Album
-
This method is used to give the id of the album.
- getId() - Method in class MusicalElement
-
This method is used to give the id of the element.
- getId() - Method in class Playlist
-
This method is used to give the id of the playlist.
- getLanguage() - Method in class AudioBook
-
This method is used to give the language of the audiobook.
- getName() - Method in class Playlist
-
This method is used to give the name of the playlist in uppercase.
- getSongs() - Method in class Album
-
This method is used to print the each songs contained in the songs attribute of the album.
- getSongs() - Method in class Playlist
-
This method is used to print the each songs contained in the songs attribute of the playlist.
- getTitle() - Method in class Album
-
This method is used to give the title of the album.
- getTitle() - Method in class MusicalElement
-
This method is used to give the title of the element.
- save(String, ArrayList) - Static method in class jMusicHub
-
save is used by the command "s".
- setArtist(String) - Method in class Album
-
Basic method to set the artist of the album.
- setArtist(String) - Method in class AudioBook
-
Basic method to set the author of the audiobook.
- setArtist(String) - Method in class Song
-
Basic method to set the artist of the song.
- setCategory(Category) - Method in class AudioBook
-
Basic method to set the category of the audiobook using the name method from the Category class.
- setContent(String) - Method in class MusicalElement
-
Basic method to set the content path of the element.
- setDate(Date) - Method in class Album
-
Basic method to set the date of the album.
- setDuration(int) - Method in class MusicalElement
-
Basic method to set the duration of the element.
- setGenre(Language) - Method in class AudioBook
-
Basic method to set the language of the audiobook using the name method from the Language class.
- setGenre(Genre) - Method in class Song
-
Basic method to set the genre of the song using the name method from the Genre class.
- setId(int) - Method in class Album
-
Basic method to set the id of the album.
- setId(int) - Method in class MusicalElement
-
Basic method to set the id of the element.
- setId(int) - Method in class Playlist
-
Basic method to set the id of the playlist.
- setName(String) - Method in class Playlist
-
Basic method to set the name of the playlist.
- setTitle(String) - Method in class Album
-
Basic method to set the title of the album.
- setTitle(String) - Method in class MusicalElement
-
Basic method to set the title of the element.
- Song - Class in <Unnamed>
-
The Song class is used to create songs while extending MusicalElement.
- Song(String, int, String, String, Genre) - Constructor for class Song
-
Constructor method.