151152153154155156157158159
NodeSelector<Node> selector = parser.parseSelector(namespaces); return selector.select(backend,context, (List<Node>)ImmutableList.of(), paths); } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
195196197198199200201202203
FieldMapping<T,Node> mapping = parser.parseRule(namespaces); return mapping.getValues(backend, context); } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
230231232233234235236237
} return result; } catch (ParseException e) { throw new LDPathParseException("error while parsing path expression",e); } }
253254255256257258259260
} try { return parser.parseProgram(); } catch (ParseException e) { throw new LDPathParseException("error while parsing path program",e); } }
197198199200201202203204205
232233234235236237238239
255256257258259260261262
107108109110111112113114115
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); } }
153154155156157158159160161