HTML and CSS Reference
In-Depth Information
public String getLang() {
return lang;
}
public void setLang(String lang) {
this.lang = lang;
}
public Serializable getContent() {
return content;
}
public void setContent(Serializable content) {
this.content = content;
}
public List<BookRequest> getBookRequestList() {
return bookRequestList;
}
public void setBookRequestList(List<BookRequest> bookRequestList) {
this.bookRequestList = bookRequestList;
}
@Override
public int hashCode() {
int hash = 0;
hash += (id != null ? id.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
if (!(object instanceof Book)) {
return false;
}
Book other = (Book) object;
if ((this.id == null && other.id != null) || (this.id != null &&
!this.id.equals(other.id))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.jsfprohtml5.megaapp.model.Book[ id=" + id + " ]";
}
}
Search WWH ::




Custom Search