201202203204205206207
* * @param selector Descendant selector * @return a {@link SlingQuery} object transformed by this operation */ public SlingQuery has(String selector) { return functionWithSelector(new HasFunction(selector, searchStrategy), ""); }
191192193194195196197