Repository: jena Updated Branches: refs/heads/master 76fd427bc -> e145ccaa9
Add javadoc. Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/e145ccaa Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/e145ccaa Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/e145ccaa Branch: refs/heads/master Commit: e145ccaa941c9a4df41a803ec038c56439d1a1bd Parents: 76fd427 Author: Andy Seaborne <[email protected]> Authored: Mon May 22 11:43:13 2017 +0100 Committer: Andy Seaborne <[email protected]> Committed: Mon May 22 11:43:13 2017 +0100 ---------------------------------------------------------------------- .../apache/jena/sparql/pfunction/PropertyFunctionEval.java | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/e145ccaa/jena-arq/src/main/java/org/apache/jena/sparql/pfunction/PropertyFunctionEval.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/pfunction/PropertyFunctionEval.java b/jena-arq/src/main/java/org/apache/jena/sparql/pfunction/PropertyFunctionEval.java index 562e9d2..5a924d1 100644 --- a/jena-arq/src/main/java/org/apache/jena/sparql/pfunction/PropertyFunctionEval.java +++ b/jena-arq/src/main/java/org/apache/jena/sparql/pfunction/PropertyFunctionEval.java @@ -42,6 +42,14 @@ public abstract class PropertyFunctionEval extends PropertyFunctionBase return execEvaluated(binding, argSubject, predicate, argObject, execCxt) ; } + /** + * @param binding Current solution from previous query stage + * @param argSubject PropFuncArg, after substitution of any bound variables in this binding + * @param predicate This predicate + * @param argObject PropFuncArg, after substitution of any bound variables in this binding + * @param execCxt Execution context + * @return QueryIterator + */ public abstract QueryIterator execEvaluated(Binding binding, PropFuncArg argSubject, Node predicate, PropFuncArg argObject, ExecutionContext execCxt) ; }
