public boolean equals()

in java/com/jetbrains/cef/remote/thrift_codegen/RObject.java [358:401]


  public boolean equals(RObject that) {
    if (that == null)
      return false;
    if (this == that)
      return true;

    boolean this_present_isNull = true;
    boolean that_present_isNull = true;
    if (this_present_isNull || that_present_isNull) {
      if (!(this_present_isNull && that_present_isNull))
        return false;
      if (this.isNull != that.isNull)
        return false;
    }

    boolean this_present_objId = true;
    boolean that_present_objId = true;
    if (this_present_objId || that_present_objId) {
      if (!(this_present_objId && that_present_objId))
        return false;
      if (this.objId != that.objId)
        return false;
    }

    boolean this_present_flags = true && this.isSetFlags();
    boolean that_present_flags = true && that.isSetFlags();
    if (this_present_flags || that_present_flags) {
      if (!(this_present_flags && that_present_flags))
        return false;
      if (this.flags != that.flags)
        return false;
    }

    boolean this_present_objInfo = true && this.isSetObjInfo();
    boolean that_present_objInfo = true && that.isSetObjInfo();
    if (this_present_objInfo || that_present_objInfo) {
      if (!(this_present_objInfo && that_present_objInfo))
        return false;
      if (!this.objInfo.equals(that.objInfo))
        return false;
    }

    return true;
  }