Ejemplo n.º 1
0
 /**
  * Import the same modules into this query service as imported by the given query service. This is
  * a one-time copy; further imports into either query service won't affect the other one.
  *
  * @param that the query service to copy module imports from
  * @return this service, to chain calls
  */
 public QueryService importSameModulesAs(QueryService that) {
   moduleMap.putAll(that.moduleMap);
   return this;
 }