コード例 #1
0
ファイル: Episome.java プロジェクト: R-Wright-1/iDynoMiCS
  @Override
  @SuppressWarnings("unchecked")
  public Object clone() throws CloneNotSupportedException {
    Episome o = (Episome) super.clone();
    o._host = this._host;
    o._speciesParam = _speciesParam;

    o.reactionActive = (ArrayList<Integer>) this.reactionActive.clone();
    o.lastExchange = this.lastExchange;
    o.lastReception = this.lastReception;

    return o;
  }