- save(String, ArrayList) - Static method in class jMusicHub
-
save is used by the command "s"
It is used to serialize (save) arrays of a list into the type's file.i
Exemple : save("nameOfTheFile", elements)
It will save the arrayList named elements into nameOfTheFile in the working directory.
- 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 audiobook.
- setArtist(String) - Method in class 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
-
- setDate(Date) - Method in class Album
-
Basic method to set the date of the album.
- setDuration(int) - Method in class MusicalElement
-
- setGenre(Language) - Method in class AudioBook
-
Basic method to set the language of the audiobook using the name method from the Language object.
- setGenre(Genre) - Method in class Song
-
- setId(int) - Method in class Album
-
Basic method to set the id of the album.
- setId(int) - Method in class MusicalElement
-
- setId(int) - Method in class Playlist
-
- setName(String) - Method in class Playlist
-
- setTitle(String) - Method in class Album
-
Basic method to set the title of the album.
- setTitle(String) - Method in class MusicalElement
-
- Song - Class in <Unnamed>
-
Song is using instanciating MusicalElement and is Serializable.
- Song(String, int, String, String, Genre) - Constructor for class Song
-