From 9a234079437a1532072ed5f0bce0203922719b0f Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Sun, 27 Jun 2021 12:54:48 +0200 Subject: Fix : Javadoc missing --- target/site/apidocs/musichub/util/LogHandler.html | 210 +++++++++++++++++++++ .../site/apidocs/musichub/util/PathValidation.html | 189 +++++++++++++++++++ target/site/apidocs/musichub/util/XMLHandler.html | 186 ++++++++++++++++++ .../musichub/util/class-use/LogHandler.html | 65 +++++++ .../musichub/util/class-use/PathValidation.html | 65 +++++++ .../musichub/util/class-use/XMLHandler.html | 65 +++++++ .../apidocs/musichub/util/package-summary.html | 88 +++++++++ .../site/apidocs/musichub/util/package-tree.html | 81 ++++++++ target/site/apidocs/musichub/util/package-use.html | 65 +++++++ 9 files changed, 1014 insertions(+) create mode 100644 target/site/apidocs/musichub/util/LogHandler.html create mode 100644 target/site/apidocs/musichub/util/PathValidation.html create mode 100644 target/site/apidocs/musichub/util/XMLHandler.html create mode 100644 target/site/apidocs/musichub/util/class-use/LogHandler.html create mode 100644 target/site/apidocs/musichub/util/class-use/PathValidation.html create mode 100644 target/site/apidocs/musichub/util/class-use/XMLHandler.html create mode 100644 target/site/apidocs/musichub/util/package-summary.html create mode 100644 target/site/apidocs/musichub/util/package-tree.html create mode 100644 target/site/apidocs/musichub/util/package-use.html (limited to 'target/site/apidocs/musichub/util') diff --git a/target/site/apidocs/musichub/util/LogHandler.html b/target/site/apidocs/musichub/util/LogHandler.html new file mode 100644 index 0000000..aab61a3 --- /dev/null +++ b/target/site/apidocs/musichub/util/LogHandler.html @@ -0,0 +1,210 @@ + + + + + +LogHandler (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package musichub.util
+

Class LogHandler

+
+
java.lang.Object +
musichub.util.LogHandler
+
+
+
+
public final class LogHandler +extends Object
+
Class offering a log writing method.
+
+
Version:
+
1.0
+
Author:
+
Aimeric ADJUTOR
+
+
+
+
    + +
  • +
    +

    Constructor Summary

    +
    Constructors
    +
    +
    Constructor
    +
    Description
    + +
    +
    Method that just throws an AssertionError if the class is called
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    static void
    + +
    +
    Method that prints the content of spoteezer.log
    +
    +
    static void
    +
    write​(String msg, + String type)
    +
    +
    Method that writes a log message to spoteezer.log
    +
    +
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

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

    Constructor Details

    +
      +
    • +
      +

      LogHandler

      +
      public LogHandler()
      +
      Method that just throws an AssertionError if the class is called
      +
      +
      Throws:
      +
      AssertionError - you can't instantiate this class
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      write

      +
      public static void write(String msg, + String type) + throws IOException
      +
      Method that writes a log message to spoteezer.log
      +
      +
      Parameters:
      +
      msg - the message to write
      +
      type - the type of log
      +
      Throws:
      +
      IOException - if the file's not there
      +
      +
      +
    • +
    • +
      +

      read

      +
      public static void read() + throws IOException
      +
      Method that prints the content of spoteezer.log
      +
      +
      Throws:
      +
      IOException - if the file's not there
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/PathValidation.html b/target/site/apidocs/musichub/util/PathValidation.html new file mode 100644 index 0000000..fd6d4b8 --- /dev/null +++ b/target/site/apidocs/musichub/util/PathValidation.html @@ -0,0 +1,189 @@ + + + + + +PathValidation (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package musichub.util
+

Class PathValidation

+
+
java.lang.Object +
musichub.util.PathValidation
+
+
+
+
public final class PathValidation +extends Object
+
Class offering a path validation method.
+
+
Version:
+
1.0
+
Author:
+
Aimeric ADJUTOR
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      PathValidation

      +
      public PathValidation()
      +
      Method that just throws an AssertionError if the class is called
      +
      +
      Throws:
      +
      AssertionError - you can't instantiate this class
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      isPathValid

      +
      public static boolean isPathValid(String inputPath)
      +
      Method that checks the validity of a given path
      +
      +
      Parameters:
      +
      inputPath - the path given by the user
      +
      Returns:
      +
      a boolean
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/XMLHandler.html b/target/site/apidocs/musichub/util/XMLHandler.html new file mode 100644 index 0000000..8957fcb --- /dev/null +++ b/target/site/apidocs/musichub/util/XMLHandler.html @@ -0,0 +1,186 @@ + + + + + +XMLHandler (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package musichub.util
+

Class XMLHandler

+
+
java.lang.Object +
musichub.util.XMLHandler
+
+
+
+
public class XMLHandler +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      XMLHandler

      +
      public XMLHandler()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      createXMLFile

      +
      public void createXMLFile(Document document, + String filePath)
      +
      +
    • +
    • +
      +

      createXMLDocument

      +
      public Document createXMLDocument()
      +
      +
    • +
    • +
      +

      parseXMLFile

      +
      public NodeList parseXMLFile(String filePath)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/class-use/LogHandler.html b/target/site/apidocs/musichub/util/class-use/LogHandler.html new file mode 100644 index 0000000..2d3ba9c --- /dev/null +++ b/target/site/apidocs/musichub/util/class-use/LogHandler.html @@ -0,0 +1,65 @@ + + + + + +Uses of Class musichub.util.LogHandler (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.util.LogHandler

+
+No usage of musichub.util.LogHandler
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/class-use/PathValidation.html b/target/site/apidocs/musichub/util/class-use/PathValidation.html new file mode 100644 index 0000000..68d4275 --- /dev/null +++ b/target/site/apidocs/musichub/util/class-use/PathValidation.html @@ -0,0 +1,65 @@ + + + + + +Uses of Class musichub.util.PathValidation (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.util.PathValidation

+
+No usage of musichub.util.PathValidation
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/class-use/XMLHandler.html b/target/site/apidocs/musichub/util/class-use/XMLHandler.html new file mode 100644 index 0000000..1115b00 --- /dev/null +++ b/target/site/apidocs/musichub/util/class-use/XMLHandler.html @@ -0,0 +1,65 @@ + + + + + +Uses of Class musichub.util.XMLHandler (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.util.XMLHandler

+
+No usage of musichub.util.XMLHandler
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/package-summary.html b/target/site/apidocs/musichub/util/package-summary.html new file mode 100644 index 0000000..f15c1e8 --- /dev/null +++ b/target/site/apidocs/musichub/util/package-summary.html @@ -0,0 +1,88 @@ + + + + + +musichub.util (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Package musichub.util

+
+
+
package musichub.util
+
+
    +
  • +
    Class Summary
    +
    +
    Class
    +
    Description
    + +
    +
    Class offering a log writing method.
    +
    + +
    +
    Class offering a path validation method.
    +
    + +
     
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/package-tree.html b/target/site/apidocs/musichub/util/package-tree.html new file mode 100644 index 0000000..5e16d78 --- /dev/null +++ b/target/site/apidocs/musichub/util/package-tree.html @@ -0,0 +1,81 @@ + + + + + +musichub.util Class Hierarchy (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package musichub.util

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/util/package-use.html b/target/site/apidocs/musichub/util/package-use.html new file mode 100644 index 0000000..9451dbe --- /dev/null +++ b/target/site/apidocs/musichub/util/package-use.html @@ -0,0 +1,65 @@ + + + + + +Uses of Package musichub.util (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
musichub.util

+
+No usage of musichub.util
+ +
+
+ + -- cgit v1.2.3