示例#1
0
  public Object clone() {
    if (this.isBusy) return this;
    this.isBusy = true;

    VSBloodPressure clone = new VSBloodPressure(this.id, this.version);

    clone.bpsittingsys = this.bpsittingsys;
    clone.bpsittingdias = this.bpsittingdias;
    clone.bpstandingsys = this.bpstandingsys;
    clone.bpstandingdias = this.bpstandingdias;
    clone.timeinterval = this.timeinterval;
    clone.bplyingsys = this.bplyingsys;
    clone.bplyingdias = this.bplyingdias;
    clone.comment = this.comment;
    clone.isValidated = this.isValidated;

    this.isBusy = false;
    return clone;
  }