diff options
| author | Masfehico <clyhtsuriva@gmail.com> | 2020-11-23 16:15:21 +0100 |
|---|---|---|
| committer | Masfehico <clyhtsuriva@gmail.com> | 2020-11-23 16:15:21 +0100 |
| commit | 2a265d2f8787174337df4d5fc83e206ddd3289c4 (patch) | |
| tree | 6e1c8a21ea36010f8435e4970db05d184da685ac /AudioBook.java | |
| parent | 12e26df466421e41f40f2b353bd39af2f87f416f (diff) | |
| download | jMusicHub-2a265d2f8787174337df4d5fc83e206ddd3289c4.tar.gz jMusicHub-2a265d2f8787174337df4d5fc83e206ddd3289c4.tar.bz2 jMusicHub-2a265d2f8787174337df4d5fc83e206ddd3289c4.zip | |
Musical elements updated and jMusicHub basic creation
Diffstat (limited to '')
| -rw-r--r-- | AudioBook.java | 12 |
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; + } + + + +} |
