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); this.artist=artist; this.genre=genre.name(); } public String getArtist(){return artist;} public String getGenre(){return genre;} public void setArtist(String artist){this.artist=artist;} public void setGenre(Genre genre){this.genre=genre.name();} }