aboutsummaryrefslogtreecommitdiff
path: root/AudioBook.java
diff options
context:
space:
mode:
authorMasfehico <clyhtsuriva@gmail.com>2020-11-23 16:15:21 +0100
committerMasfehico <clyhtsuriva@gmail.com>2020-11-23 16:15:21 +0100
commit2a265d2f8787174337df4d5fc83e206ddd3289c4 (patch)
tree6e1c8a21ea36010f8435e4970db05d184da685ac /AudioBook.java
parent12e26df466421e41f40f2b353bd39af2f87f416f (diff)
Musical elements updated and jMusicHub basic creation
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;
+ }
+
+
+
+}