// Each instance of the Track class represents a song. Each track has a title (the // name of the song), an artist singer), and a track length (the playing time). // Your state should includes at least each of these three properties. public class Track{ // Constructor public Track(String track, String artist, int lengthInSeconds){} // Access Methods - for the title, artist and tracklength public String getTrackName() {return "";} public String getArtistName() {return "";} public int getTrackLength() { return 0; } // in seconds // Express the contents of the track into a single string - one that includes // the title, the name of the artist and the track length. // For example, "Eminem -- The Real Slim Shady -- 3:23" // This method will be useful to you for debugging. public String toString() { return ""; } }