Minor Bugfix
This commit is contained in:
parent
3c44a13e53
commit
183ae3d3b9
@ -84,390 +84,130 @@ public class Movie {
|
|||||||
this.director = value;
|
this.director = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public String getGenre() {
|
public String getGenre() {
|
||||||
return genre;
|
return genre;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void setGenre(String value) {
|
public void setGenre(String value) {
|
||||||
this.genre = value;
|
this.genre = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> imdbId.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getImdbId() {
|
public String getImdbId() {
|
||||||
return imdbId;
|
return imdbId;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> imdbId.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setImdbId(String value) {
|
public void setImdbId(String value) {
|
||||||
this.imdbId = value;
|
this.imdbId = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> imdbRating.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getImdbRating() {
|
public String getImdbRating() {
|
||||||
return imdbRating;
|
return imdbRating;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> imdbRating.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setImdbRating(String value) {
|
public void setImdbRating(String value) {
|
||||||
this.imdbRating = value;
|
this.imdbRating = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> imdbVotes.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getImdbVotes() {
|
public String getImdbVotes() {
|
||||||
return imdbVotes;
|
return imdbVotes;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setImdbVotes(String value) {
|
public void setImdbVotes(String value) {
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> imdbVotes.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
this.imdbVotes = value;
|
this.imdbVotes = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getLanguage() {
|
public String getLanguage() {
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> language.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
return language;
|
return language;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> language.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setLanguage(String value) {
|
public void setLanguage(String value) {
|
||||||
this.language = value;
|
this.language = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> metascore.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getMetascore() {
|
public String getMetascore() {
|
||||||
return metascore;
|
return metascore;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> metascore.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setMetascore(String value) {
|
public void setMetascore(String value) {
|
||||||
this.metascore = value;
|
this.metascore = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> plot.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getPlot() {
|
public String getPlot() {
|
||||||
return plot;
|
return plot;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> plot.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPlot(String value) {
|
public void setPlot(String value) {
|
||||||
this.plot = value;
|
this.plot = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> poster.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getPoster() {
|
public String getPoster() {
|
||||||
return poster;
|
return poster;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> poster.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setPoster(String value) {
|
public void setPoster(String value) {
|
||||||
this.poster = value;
|
this.poster = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> rated.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getRated() {
|
public String getRated() {
|
||||||
return rated;
|
return rated;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> rated.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setRated(String value) {
|
public void setRated(String value) {
|
||||||
this.rated = value;
|
this.rated = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> released.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getReleased() {
|
public String getReleased() {
|
||||||
return released;
|
return released;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> released.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setReleased(String value) {
|
public void setReleased(String value) {
|
||||||
this.released = value;
|
this.released = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> response.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getResponse() {
|
public String getResponse() {
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> response.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setResponse(String value) {
|
public void setResponse(String value) {
|
||||||
this.response = value;
|
this.response = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> runtime.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getRuntime() {
|
public String getRuntime() {
|
||||||
return runtime;
|
return runtime;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> runtime.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setRuntime(String value) {
|
public void setRuntime(String value) {
|
||||||
this.runtime = value;
|
this.runtime = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> title.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public String getTitle() {
|
public String getTitle() {
|
||||||
return title;
|
return title;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> title.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public void setTitle(String value) {
|
public void setTitle(String value) {
|
||||||
this.title = value;
|
this.title = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> type.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
>>>>>>> origin/master
|
|
||||||
public String getType() {
|
public String getType() {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> type.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
>>>>>>> origin/master
|
|
||||||
public void setType(String value) {
|
public void setType(String value) {
|
||||||
this.type = value;
|
this.type = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> writer.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
>>>>>>> origin/master
|
|
||||||
public String getWriter() {
|
public String getWriter() {
|
||||||
return writer;
|
return writer;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> writer.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
>>>>>>> origin/master
|
|
||||||
public void setWriter(String value) {
|
public void setWriter(String value) {
|
||||||
this.writer = value;
|
this.writer = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
/**
|
|
||||||
* Recupera il valore della propriet<EFBFBD> year.
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
* possible object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
>>>>>>> origin/master
|
|
||||||
public String getYear() {
|
public String getYear() {
|
||||||
return year;
|
return year;
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
/**
|
|
||||||
* Imposta il valore della propriet<EFBFBD> year.
|
|
||||||
*
|
|
||||||
* @param value
|
|
||||||
* allowed object is
|
|
||||||
* {@link String }
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
>>>>>>> origin/master
|
|
||||||
public void setYear(String value) {
|
public void setYear(String value) {
|
||||||
this.year = value;
|
this.year = value;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user