Question: java please all parts connected. please specify each part Create an interface called IPlayable. It must have 4 methods: 1. start() 2. stop() 3. pause()



Create an interface called IPlayable. It must have 4 methods: 1. start() 2. stop() 3. pause() 4. unpause() Each should take in a song name (string) and return nothing. Create a MusicPlayer class which implements IPlayable (from the previous question). 1. Implement start(). Have it print "I'm playing" 2. Implement stop(). Have it print "I'm stopping" 3. Define pause() and unpause() as abstract methods. Create a Portable Music Player class which extends Music Player (from the previous question). 1. Implement pause - have it print out "I'm pausing" 2. Implement unpause - have it print out "I'm unpausing" Use repl.it to test your answer for this question. Write the statements to instantiate 2 objects of type PortableMusic Player: Paste (ctrl v) all your code from repl.it into this box
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
