aboutsummaryrefslogtreecommitdiff
path: root/AudioBook.java
blob: d53a89980f47a46f5b281efc4923a6857ac98973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class AudioBook extends MusicalElement {
	private String author, language, category;
	public AudioBook(int id, String title, int duration, String content, String author, String language, String category) {
		super(id, title, duration, content);
		this.author=author;
		this.language=language;
		this.category=category;
	}



}