From de39259ada4f75ac987f9bd8f0674ebede75a0de Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Mon, 28 Dec 2020 16:09:37 +0100 Subject: Starting javadoc --- javadoc/MusicalElement.html | 379 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 379 insertions(+) create mode 100644 javadoc/MusicalElement.html (limited to 'javadoc/MusicalElement.html') diff --git a/javadoc/MusicalElement.html b/javadoc/MusicalElement.html new file mode 100644 index 0000000..fa4e8c3 --- /dev/null +++ b/javadoc/MusicalElement.html @@ -0,0 +1,379 @@ + + + + + +MusicalElement + + + + + + + + +
+ + + + + + + +
+ + + +
+

Class MusicalElement

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    Direct Known Subclasses:
    +
    AudioBook, Song
    +
    +
    +
    +
    public abstract class MusicalElement
    +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.
    +
    +
    See Also:
    +
    Serialized Form
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      MusicalElement(java.lang.String title, + int duration, + java.lang.String content) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      java.lang.StringgetContent() 
      intgetDuration() 
      intgetId() 
      java.lang.StringgetTitle() 
      voidsetContent(java.lang.String content) 
      voidsetDuration(int duration) 
      voidsetId(int id) 
      voidsetTitle(java.lang.String title) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        MusicalElement

        +
        public MusicalElement(java.lang.String title,
        +                      int duration,
        +                      java.lang.String content)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getId

        +
        public int getId()
        +
      • +
      + + + +
        +
      • +

        getTitle

        +
        public java.lang.String getTitle()
        +
      • +
      + + + +
        +
      • +

        getDuration

        +
        public int getDuration()
        +
      • +
      + + + +
        +
      • +

        getContent

        +
        public java.lang.String getContent()
        +
      • +
      + + + +
        +
      • +

        setId

        +
        public void setId(int id)
        +
      • +
      + + + +
        +
      • +

        setTitle

        +
        public void setTitle(java.lang.String title)
        +
      • +
      + + + +
        +
      • +

        setDuration

        +
        public void setDuration(int duration)
        +
      • +
      + + + +
        +
      • +

        setContent

        +
        public void setContent(java.lang.String content)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + -- cgit v1.2.3