Returns tokens to be looked up. @param qc query context @return index accessor @throws QueryException query exception
(final QueryContext qc)
| 83 | * @throws QueryException query exception |
| 84 | */ |
| 85 | private TokenSet tokens(final QueryContext qc) throws QueryException { |
| 86 | final TokenSet token = new TokenSet(); |
| 87 | for(final Item item : arg(1).atomValue(qc, info)) { |
| 88 | token.put(toToken(item)); |
| 89 | } |
| 90 | return token; |
| 91 | } |
| 92 | } |