/** Representation of a cat */ public class Cat extends Pet { /** Construct a new cat */ public Cat(String name, double weight) { super(name,weight); } /** Return a cat noise */ public String speak() { return "meow"; } }