// represents a saxophone public class Saxophone extends WoodWind { /* constructors -----------------------------------------*/ public Saxophone() { super(); } /* constructor with parameters */ public Saxophone(String newKey, String newReed) { super(newKey, newReed); } /* other methods ----------------------------------------*/ /* play the instrument */ public void play() { System.out.println("blow into mouthpiece and press keys."); } /* toString create String representation */ public String toString() { return "Saxophone "+super.toString(); } }