aboutsummaryrefslogtreecommitdiffstats
path: root/AudioBook.java
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2020-12-28 17:31:33 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2020-12-28 17:31:33 +0100
commit7c23f453d166d396451504e26fbb385afc0c4c13 (patch)
tree01aee8bfcd409dbaa3e90889295869903a4ab5d5 /AudioBook.java
parentde39259ada4f75ac987f9bd8f0674ebede75a0de (diff)
downloadjMusicHub-7c23f453d166d396451504e26fbb385afc0c4c13.tar.gz
jMusicHub-7c23f453d166d396451504e26fbb385afc0c4c13.tar.bz2
jMusicHub-7c23f453d166d396451504e26fbb385afc0c4c13.zip
Finishing javadoc
Diffstat (limited to '')
-rw-r--r--AudioBook.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/AudioBook.java b/AudioBook.java
index 1e6f0e3..a4888bf 100644
--- a/AudioBook.java
+++ b/AudioBook.java
@@ -58,7 +58,7 @@ public class AudioBook extends MusicalElement {
/**
* This method is used to give the language of the audiobook.
*
- * @return It returns the language, which is a String because the constructor use the name method of the Language object.
+ * @return It returns the language, which is a String because the constructor use the name method of the Language class.
*
* @see Language
* @author Aimeric ADJUTOR
@@ -68,7 +68,7 @@ public class AudioBook extends MusicalElement {
/**
* This method is used to give the category of the audiobook.
*
- * @return It returns the category, which is a String because the constructor use the name method of the Category object.
+ * @return It returns the category, which is a String because the constructor use the name method of the Category class.
*
* @see Category
* @author Aimeric ADJUTOR
@@ -76,7 +76,7 @@ public class AudioBook extends MusicalElement {
public String getCategory(){return category;}
/**
- * Basic method to set the author of audiobook.
+ * Basic method to set the author of the audiobook.
*
* @param author String
*
@@ -85,7 +85,7 @@ public class AudioBook extends MusicalElement {
public void setArtist(String author){this.author=author;}
/**
- * Basic method to set the language of the audiobook using the name method from the Language object.
+ * Basic method to set the language of the audiobook using the name method from the Language class.
*
* @param language Language
*