Exemplo n.º 1
0
  public SDK copy() {
    SDK copy = new SDK(this.getLocation());

    copy.setContributed(isContributed());
    copy.setDefault(isDefault());
    copy.setName(getName());
    copy.setVersion(getVersion());

    return copy;
  }