Newer
Older
public class Review implements java.io.Serializable{
private String comment, name, restEventDesignation,eventType;
private Integer rating;
/**
* Review object structure
*
* @param comment A review comment
* @param rating A rating
*/
public Review( String comment, String name, String restEventDesignation, Integer rating, String restOrEvent){
this.name = name;
this.restEventDesignation = restEventDesignation;
this.comment = comment;
this.rating = rating;
this.eventType = restOrEvent;
}
public double getRating() {
return rating;
}
public String getComment() {
return comment;
}
public void setComment(String setComment) {
this.comment = setComment;
}
public void changeComment(String newComment){
this.comment = newComment;
}
}