aboutsummaryrefslogtreecommitdiff
path: root/Genre.java
diff options
context:
space:
mode:
Diffstat (limited to 'Genre.java')
-rw-r--r--Genre.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/Genre.java b/Genre.java
index 13fbe3e..1083df6 100644
--- a/Genre.java
+++ b/Genre.java
@@ -1,3 +1,24 @@
+/*
+ * Name : Genre
+ *
+ * Description : The enum is used by songs as an attribute.
+ *
+ * Version : 1.0
+ *
+ * Date : 28/12/2020
+ *
+ * Copyright : Aimeric ADJUTOR
+ */
+
+/**
+ * The Genre enum is used by songs as an attribute.
+ *
+ * @version 1.0
+ *
+ * @see Song
+ * @author Aimeric ADJUTOR
+ */
+
public enum Genre {
JAZZ, CLASSICAL, HIPHOP, ROCK, POP, RAP
}