[ 
https://issues.apache.org/jira/browse/JXPATH-108?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matt Benson updated JXPATH-108:
-------------------------------

    Description: 
If a NodeSet (BasicNodeSet) is returned from a custom function,
count() does not work and returns always 1.

Perhaps could be added In ri.compiler.CoreFunction.java, method 
functionCount(EvalContext)

else if (value instanceof Collection) {... }
else if (value instanceof NodeSet) {
            count = ((NodeSet) value).getValues().size();
        }

or similiar.



  was:
If a NodeSet (SimpleNodeSet) is returned from a custom function,
count() does not work and returns always 1.

Perhaps could be added In ri.compiler.CoreFunction.java, method 
functionCount(EvalContext)

else if (value instanceof Collection) {... }
else if (value instanceof NodeSet) {
            count = ((NodeSet) value).getValues().size();
        }

or similiar.




> count() on NodeSet returned from custom function.
> -------------------------------------------------
>
>                 Key: JXPATH-108
>                 URL: https://issues.apache.org/jira/browse/JXPATH-108
>             Project: Commons JXPath
>          Issue Type: Improvement
>    Affects Versions: 1.3
>            Reporter: Michele Vivoda
>            Priority: Minor
>
> If a NodeSet (BasicNodeSet) is returned from a custom function,
> count() does not work and returns always 1.
> Perhaps could be added In ri.compiler.CoreFunction.java, method 
> functionCount(EvalContext)
> else if (value instanceof Collection) {... }
> else if (value instanceof NodeSet) {
>             count = ((NodeSet) value).getValues().size();
>         }
> or similiar.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to