You don't seem to have any setters defined. Just like the get commands, you need to define setters.
public void setHeight(double i){
this.height = i;
}
public void setWidth(double i){
this.width = i;
}
public void setColor(String color){
this.color = color;
}