aboutsummaryrefslogtreecommitdiff
path: root/src/musichub/main/Main.java
diff options
context:
space:
mode:
authorClyhtsuriva <61652557+clyhtsuriva@users.noreply.github.com>2021-06-26 11:02:14 +0000
committerGitHub <noreply@github.com>2021-06-26 11:02:14 +0000
commit0f827658562b3530b3d6bcbb77ce32490c977f28 (patch)
tree5f9756148699ac753de4834068faa4d333c36f98 /src/musichub/main/Main.java
parentf920b48762cae194d5a9f7808273826714166424 (diff)
parent05b5bb7d2407006e08f46f66893a972a9f091952 (diff)
Merge pull request #4 from Said-Belhadj/feature/STZ-0001
Feature/stz 0001
Diffstat (limited to 'src/musichub/main/Main.java')
-rw-r--r--src/musichub/main/Main.java13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/musichub/main/Main.java b/src/musichub/main/Main.java
index b72a95b..2876734 100644
--- a/src/musichub/main/Main.java
+++ b/src/musichub/main/Main.java
@@ -2,11 +2,16 @@ package musichub.main;
import musichub.business.*;
+import java.io.IOException;
import java.util.Iterator;
+import java.util.List;
import java.util.Scanner;
+import javax.sound.sampled.LineUnavailableException;
+import javax.sound.sampled.UnsupportedAudioFileException;
+
public class Main {
- public static void main(String[] args) {
+ public static void main(String[] args) throws UnsupportedAudioFileException, IOException, LineUnavailableException {
MusicHub theHub = new MusicHub();
@@ -41,7 +46,8 @@ public class Main {
albumTitle = scan.nextLine();
try {
- System.out.println(theHub.getAlbumSongsSortedByGenre(albumTitle));
+ List<Song> songs = theHub.getAlbumSongsSortedByGenre(albumTitle);
+ System.out.println(songs);;
} catch (NoAlbumFoundException ex) {
System.out.println("No album found with the requested title " + ex.getMessage());
}
@@ -55,7 +61,10 @@ public class Main {
albumTitle = scan.nextLine();
try {
+ List<AudioElement> songs = theHub.getAlbumSongs(albumTitle);
System.out.println(theHub.getAlbumSongs(albumTitle));
+ String song = scan.nextLine();
+ theHub.getAudioElement(songs, song);
} catch (NoAlbumFoundException ex) {
System.out.println("No album found with the requested title " + ex.getMessage());
}