コード例 #1
0
ファイル: QueryService.java プロジェクト: GerritBoers/exist
 /**
  * Declare a namespace binding within the scope of this query.
  *
  * @param key the key to bind
  * @param uri the namespace uri
  * @return this service, to chain calls
  */
 public QueryService namespace(String key, String uri) {
   namespaceBindings.put(key, uri);
   return this;
 }