public class Animal { protected String name; protected String sound; protected String color; protected String secondColor; public void setColor(String color) { this.color = color; this.secondColor = color; } public void setColor(String color, String color2) { this.color = color; this.secondColor = color2; } public String getColor() { return color; } public String toString() { return sound; } }