Question: Write a reference class called Song. It represents a simple song consisting of two sequences, one of durations and one offrequencies. Here is its API:



Write a reference class called Song. It represents a simple song consisting of two sequences, one of durations and one offrequencies. Here is its API: public song this constructor creates a Song object with empty duration and frequency sequences. public void addFrequency (double frequency) this method adds a frequency to the sequence of frequencies. public void addDuration (double duration) this method adds a duration to the sequence of durations public void play this plays the sequence of durations and frequencies. It does this by indexing through both sequences, calling the play Tone method on each individual duration and frequency. In addition to those public methods above, place in your class a private version of the playTone method from an earlier assignment. Its first line will be: private void playTone (double frequency, double duration) Test your class by placing my Playsong ava program into your song package. My program creates a song object, reads a series of durations and frequencies from a file into it, and then calls the play method. You will also need to copy mymarch.txt file into your Eclipse data folder
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
