Project: Playlist Manager

profileimour33
SimplePlaylist.java

package osu.cse2123; /** * An implementation of the Playlist interface * * @author YOUR NAME HERE * @version DATE HERE * */ import java.util.LinkedList; import java.util.Queue; public class SimplePlaylist implements Playlist { // private member variable(s) - define as needed! /** * No-argument constructor - creates an empty PlayList * @postcond playlist object is empty */ public SimplePlaylist() { // TODO: Your code here } @Override public Track getTrack() { //TODO: Your code here. //TODO: Replace the line below with your own code return new SimpleTrack(); } @Override public Track peekAtTrack() { //TODO: Your code here. //TODO: Replace the line below with your own code return new SimpleTrack(); } @Override public void addTrack(Track track) { //TODO: Your code here. } @Override public boolean isEmpty() { //TODO: Your code here. //TODO: Replace the line below with your own code return false; } }