forked from wyliej1/SmartShuffle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlaylist.java
More file actions
68 lines (57 loc) · 2.05 KB
/
Playlist.java
File metadata and controls
68 lines (57 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
import java.util.Queue;
/**
*
* @author laubera1
*/
class Playlist implements IPlaylist
{
public Playlist()
{
}
/**
* Retrieves the top song in the queue that is next to be played on on screen
* @return nextSong
*/
@Override
public Song top() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* Upvotes the current song on the player updating the tags in the Category Holder class
*/
@Override
public void upvote() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* Downvotes the current song on the player updating the tags in the Category Holder class
*/
@Override
public void downvote() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* Skips the remainder of the currently playing song. Also calls downvote the current song on the player updating the tags in the Category Holder class
*/
@Override
public void skip() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* Checks to see if the playlist is empty
* @return isEmpty Boolean
*/
@Override
public Boolean isEmpty() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public Song requestNextSong() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
}