Binds a variable. @param key key @param value value to be bound @return self reference @throws XQueryException exception
(final String key, final XdmValue value)
| 58 | * @throws XQueryException exception |
| 59 | */ |
| 60 | public XQuery variable(final String key, final XdmValue value) { |
| 61 | try { |
| 62 | qp.variable(key, value.internal()); |
| 63 | return this; |
| 64 | } catch(final QueryException ex) { |
| 65 | throw new XQueryException(ex); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Declares a namespace. |
no test coverage detected