aboutsummaryrefslogtreecommitdiff
path: root/AudioBook.java
diff options
context:
space:
mode:
Diffstat (limited to 'AudioBook.java')
-rw-r--r--AudioBook.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/AudioBook.java b/AudioBook.java
index e69de29..d53a899 100644
--- a/AudioBook.java
+++ b/AudioBook.java
@@ -0,0 +1,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;
+ }
+
+
+
+}