.append("')")
.append(')');
}
public void visit(XPathQueryBuilder.PropertyCondition condition) throws RepositoryException {
RelationOp relOp = condition.getOp();
if (relOp == RelationOp.EX) {
xPath.append(escapeForQuery(condition.getRelPath()));
} else if (relOp == RelationOp.LIKE) {
xPath.append("jcr:like(")
.append(escapeForQuery(condition.getRelPath()))