public class CandyBowl{
private double weight;
private String typesOfCandy;
private double price;
public CandyBowl(){
setWeight( 0.0 );
typesOfCandy = "";
}
public CandyBowl(double w, String candies){
setWeight( w );
typesOfCandy = candies;
}
public void setWeight( double w ){
weight = w;
price = w / 100.0;
}
public void setCandy( String candies ){
typesOfCandy = candies;
}
public double getWeight( ){
return weight;
}
public String getCandies( ){
return typesOfCandy;
}
public double getPrice( ){
return price;
}
public String toString( ){
return weight + " gram candy bowl with " + typesOfCandy + " ($" + price + ")";
}
}