public class Song extends MusicalElement { private String artist, genre; public Song(int id, String title, int duration, String content, String artist, String genre) { super(id, title, duration, content); this.artist=artist; this.genre=genre; } }