107108109110111112113114115
NodeSelector<Node> selector = parser.parseSelector(namespaces); return selector.select(backend,context); } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
149150151152153154155156157
FieldMapping<T,Node> mapping = parser.parseRule(namespaces); return mapping.getValues(backend, context); } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
184185186187188189190191
} return result; } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
207208209210211212213214
} try { return parser.parseProgram(); } catch (ParseException e) { throw new LDPathParseException("error while parsing path program",e); } }
111112113114115116117118119
NodeSelector<Node> selector = parser.parseSelector(namespaces); return selector.select(backend,context,null,null); } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
157158159160161162163164165
NodeSelector<Node> selector = parser.parseSelector(namespaces); return selector.select(backend, context, ImmutableList.<Node> of(), paths); } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
201202203204205206207208209
236237238239240241242243
259260261262263264265266
105106107108109110111112113