// typeinfo/pets/Mutt.java // ©2015 MindView LLC: see Copyright.txt package typeinfo.pets; public class Mutt extends Dog { public Mutt(String name) { super(name); } public Mutt() { super(); } }