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