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