/* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ /** {@inheritDoc} */ public Boolean equals(Object obj) { if (this == obj) { return(true); } if (obj == null) { return(false); } if (GetType() != obj.GetType()) { return(false); } QQDiscuz other = (QQDiscuz)obj; if (did != other.did) { return(false); } return(true); }
/** * <p>Setter for the field <code>discuz</code>.</p> * * @param discuz the discuz to set */ public void setDiscuz(QQDiscuz discuz) { this.discuz = discuz; }