コード例 #1
0
ファイル: QQDiscuz.cs プロジェクト: cansou/sharpQQ
        /* (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);
        }
コード例 #2
0
 /**
  * <p>Setter for the field <code>discuz</code>.</p>
  *
  * @param discuz the discuz to set
  */
 public void setDiscuz(QQDiscuz discuz)
 {
     this.discuz = discuz;
 }