Beispiel #1
0
  /**
   * Deep copy.
   *
   * @return cloned object
   * @throws CloneNotSupportedException on error
   */
  @Override
  public Results clone() throws CloneNotSupportedException {

    final Results copy = (Results) super.clone();

    copy.setExamIdexam(this.getExamIdexam());
    copy.setId(this.getId());
    copy.setModifiedTime(this.getModifiedTime());
    copy.setResults(this.getResults());
    copy.setStudentIdstudent(this.getStudentIdstudent());
    return copy;
  }