View Single Post
  #3 (permalink)  
Old 11-14-2007, 05:44 PM
ShoeNinja's Avatar
ShoeNinja ShoeNinja is offline
Senior Member
 
Join Date: Oct 2007
Posts: 123
ShoeNinja is on a distinguished road
Send a message via AIM to ShoeNinja
You don't seem to have any setters defined. Just like the get commands, you need to define setters.

Code:
public void setHeight(double i){ this.height = i; } public void setWidth(double i){ this.width = i; } public void setColor(String color){ this.color = color; }

Last edited by ShoeNinja : 11-14-2007 at 05:47 PM.
Reply With Quote