import java.awt.Color; public class Puppy { private Color furColor; private double weight; public void shed() { this.furColor = Color.PINK; } public Color getFurColor() { return furColor; } public void setFurColor(Color furColor) { this.furColor = furColor; } public void setWeight(double weight) { this.weight = weight; } public double getWeight() { return this.weight; } public Puppy getBestFriend() { return this; } public void playWith(Puppy franklin) { // there are two puppies: this and franklin franklin.furColor = this.furColor; } public static String genus = "Canus"; }