Question: Need help with Java coding problem: playTone: PlaySong.java: march.txt: 0.25 195.998 0.10 0 0.25 195.998 0.10 0 0.25 195.998 0.10 0 0.1875 164.814 0.10 0
Need help with Java coding problem:

playTone:

PlaySong.java:

march.txt:
0.25 195.998 0.10 0 0.25 195.998 0.10 0 0.25 195.998 0.10 0 0.1875 164.814 0.10 0 0.1875 233.082 0.10 0 0.25 195.998 0.10 0 0.1875 164.814 0.10 0 0.09 233.082 0.10 0 0.50 195.998 0.10 0 0.25 293.665 0.10 0 0.25 293.665 0.10 0 0.25 293.665 0.10 0 0.1875 329.628 0.10 0 0.1875 233.082 0.10 0 0.25 184.997 0.10 0 0.1875 164.814 0.10 0 0.1875 233.082 0.10 0 0.50 207.652 0.10 0
Write a reference class called Song. It represents a simple songconsisting of two sequences, one of durations and one of frequencies. 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 add uration (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 playTone method on each individual duration and frequency. n addition to those public methods above, place in your clas 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 java 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 my march 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
