From 7c23f453d166d396451504e26fbb385afc0c4c13 Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Mon, 28 Dec 2020 17:31:33 +0100 Subject: Finishing javadoc --- javadoc/MusicalElement.html | 94 +++++++++++++++++++++++++++++++++++++-------- 1 file changed, 79 insertions(+), 15 deletions(-) (limited to 'javadoc/MusicalElement.html') diff --git a/javadoc/MusicalElement.html b/javadoc/MusicalElement.html index fa4e8c3..e1262dc 100644 --- a/javadoc/MusicalElement.html +++ b/javadoc/MusicalElement.html @@ -2,7 +2,7 @@ - + MusicalElement @@ -118,13 +118,12 @@ var activeTableTab = "activeTableTab"; extends java.lang.Object implements java.io.Serializable
The MusicalElement contains the base of songs and audiobooks. - It is the abstract class they will take. - We use the classical get and set here. - Get is used to return the said value. - Set is used to modify the later.
+ It's the abstract class they will extend.
See Also:
-
Serialized Form
+
Song, +AudioBook, +Serialized Form
@@ -146,7 +145,9 @@ implements java.io.Serializable MusicalElement(java.lang.String title, int duration, - java.lang.String content)  + java.lang.String content) +
Constructor method.
+ @@ -165,35 +166,51 @@ implements java.io.Serializable java.lang.String -getContent()  +getContent() +
This method is used to give the content path of the element.
+ int -getDuration()  +getDuration() +
This method is used to give the duration of the element.
+ int -getId()  +getId() +
This method is used to give the id of the element.
+ java.lang.String -getTitle()  +getTitle() +
This method is used to give the title of the element.
+ void -setContent(java.lang.String content)  +setContent(java.lang.String content) +
Basic method to set the content path of the element.
+ void -setDuration(int duration)  +setDuration(int duration) +
Basic method to set the duration of the element.
+ void -setId(int id)  +setId(int id) +
Basic method to set the id of the element.
+ void -setTitle(java.lang.String title)  +setTitle(java.lang.String title) +
Basic method to set the title of the element.
+ @@ -243,6 +267,11 @@ implements java.io.Serializable
  • getId

    public int getId()
    +
    This method is used to give the id of the element.
    +
    +
    Returns:
    +
    id int
    +
  • @@ -252,6 +281,11 @@ implements java.io.Serializable
  • getTitle

    public java.lang.String getTitle()
    +
    This method is used to give the title of the element.
    +
    +
    Returns:
    +
    title String
    +
  • @@ -261,6 +295,11 @@ implements java.io.Serializable
  • getDuration

    public int getDuration()
    +
    This method is used to give the duration of the element.
    +
    +
    Returns:
    +
    duration int
    +
  • @@ -270,6 +309,11 @@ implements java.io.Serializable
  • getContent

    public java.lang.String getContent()
    +
    This method is used to give the content path of the element.
    +
    +
    Returns:
    +
    content String
    +
  • @@ -279,6 +323,11 @@ implements java.io.Serializable
  • setId

    public void setId(int id)
    +
    Basic method to set the id of the element.
    +
    +
    Parameters:
    +
    id - int
    +
  • @@ -288,6 +337,11 @@ implements java.io.Serializable
  • setTitle

    public void setTitle(java.lang.String title)
    +
    Basic method to set the title of the element.
    +
    +
    Parameters:
    +
    title - String
    +
  • @@ -297,6 +351,11 @@ implements java.io.Serializable
  • setDuration

    public void setDuration(int duration)
    +
    Basic method to set the duration of the element.
    +
    +
    Parameters:
    +
    duration - int
    +
  • @@ -306,6 +365,11 @@ implements java.io.Serializable
  • setContent

    public void setContent(java.lang.String content)
    +
    Basic method to set the content path of the element.
    +
    +
    Parameters:
    +
    content - String
    +
  • -- cgit v1.2.3