9 lines
202 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: typeinfo/pets/Cat.java
// <20>2015 MindView LLC: see Copyright.txt
package typeinfo.pets;
public class Cat extends Pet {
public Cat(String name) { super(name); }
public Cat() { super(); }
} ///:~