/** * This is a class that defines an Ice Skater * * @author Hunter lloyd * @version 9/12/07 */ public class IceSkater { private int weight = 0; public void changeWeight(int num) { weight = weight + num; System.out.println("We've changed the weight"); } public int returnWeight() { return weight; } }