aboutsummaryrefslogtreecommitdiff
path: root/AudioBook.java
diff options
context:
space:
mode:
Diffstat (limited to 'AudioBook.java')
-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
*