/** ** Copy Constructor */ public URIArg(URIArg uriArg) { this.setUniqueKeys(uriArg.hasUniqueKeys()); this._setURI(uriArg.uri); this.setKeys(uriArg.keys); // deep copy }