1 16 19 package org.apache.xpath.functions; 20 21 import org.apache.xml.dtm.DTMIterator; 22 import org.apache.xpath.XPathContext; 23 import org.apache.xpath.objects.XNumber; 24 import org.apache.xpath.objects.XObject; 25 26 30 public class FuncCount extends FunctionOneArg 31 { 32 33 41 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException  42 { 43 44 46 DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode()); 56 int i = nl.getLength(); 57 nl.detach(); 58 59 return new XNumber((double) i); 60 } 61 } 62 | Popular Tags |