// CSE 142, Summer 2008 (Helene Martin) // Like the Rabbit, but hops 8 high. import java.awt.*; public class WhiteRabbit extends Rabbit { public Color getColor() { return Color.WHITE; } public int getHopHeight() { return 8; } }