// polymorphism/music/Instrument.java // ©2016 MindView LLC: see Copyright.txt package polymorphism.music; class Instrument { public void play(Note n) { System.out.println("Instrument.play()"); } }