public class Animal { private String name; private int topSpeed; // mph. Only allow values from 0 to 70. // Consructor that takes a String for the name and an int for the topSpeed // The constructor must call setName and setTopSpeed methods. // Write an equals(Object other) method that returns True if two Animals // top speeds are within 2 mph of each other. // Write a toString method that returns Strings like // Name: elephant, Top Speed: 25 //====================================================================== // Always include a main to test this code. //====================================================================== public static void main(String[] args) { // Test the constructor. // Test setName, setTopSpeed, getName, getTopSpeed. // Test equals. // Test toString } }