aboutsummaryrefslogtreecommitdiff
path: root/Song.java
blob: b07bb810ff7df07c26a6e3e206e3b6287715271d (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
	}



}