Back to project page Pick-n-Eat-Android.
The source code is released under:
MIT License
If you think the Android project Pick-n-Eat-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nicolasdu.pick_n_eat; /*from ww w . j av a 2s. co m*/ import java.net.URL; /** * Created by Nicolas on 1/30/2015. */ public class Review { private String Excerpt; private URL Rating; private String User; public Review(){ } public Review(String excerpt, URL rating, String user) { this.Excerpt = excerpt; this.Rating = rating; this.User = user; } public String getExcerpt() { return this.Excerpt; } public void setExcerpt(String excerpt) { this.Excerpt = excerpt; } public URL getRating() { return Rating; } public void setRating(URL rating) { Rating = rating; } public String getUser() { return this.User; } public void setUser(String user) { this.User = user; } }