/** * Representation of a song on a CD * * @author Hal Perkins * @version 8/13/01 */ public class Song { // instance variables private int seconds; // song length private String title; // song title /** * Construct a new Song with the given title and length * @param title Song title * @param seconds Length of song in seconds */ public Song(String title, int seconds) { this.title = title; this.seconds = seconds; } /** * Get Song title * @return Title of this song */ public String getTitle( ) { return this.title; } /** * Get Song length * @return Length of this song in seconds */ public int getLength( ) { return this.seconds; } }