From ec126de053cd1343e0c5778a56ea58045d0e3170 Mon Sep 17 00:00:00 2001 From: Masfehico Date: Mon, 7 Dec 2020 18:26:18 +0100 Subject: Big update Implementing the function to add songs. Cleaning a bit everywhere as well. --- Song.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Song.java') diff --git a/Song.java b/Song.java index c7556b1..c4d1fc3 100644 --- a/Song.java +++ b/Song.java @@ -1,7 +1,7 @@ public class Song extends MusicalElement { private String artist, genre; - public Song(int id, String title, int duration, String content, String artist, Genre genre) { - super(id, title, duration, content); + public Song(String title, int duration, String content, String artist, Genre genre) { + super(title, duration, content); this.artist=artist; this.genre=genre.name(); } @@ -10,4 +10,10 @@ public class Song extends MusicalElement { public String getGenre(){return genre;} public void setArtist(String artist){this.artist=artist;} public void setGenre(Genre genre){this.genre=genre.name();} + + public String toString() { + return getTitle()+";"+getDuration()+";"+getContent()+";"+artist+";"+genre; + } + + } -- cgit v1.2.3