// System.out.println("FuncPosition- prox: "+prox);
return prox;
}
DTMIterator cnl = xctxt.getContextNodeList();
if (null != cnl)
{
int n = cnl.getCurrentNode();
if(n == DTM.NULL)
{
if(cnl.getCurrentPos() == 0)
return 0;
// Then I think we're in a sort. See sort21.xsl. So the iterator has
// already been spent, and is not on the node we're processing.
// It's highly possible that this is an issue for other context-list
// functions. Shouldn't be a problem for last(), and it shouldn't be
// a problem for current().
try
{
cnl = cnl.cloneWithReset();
}
catch(CloneNotSupportedException cnse)
{
throw new com.sun.org.apache.xml.internal.utils.WrappedRuntimeException(cnse);
}
int currentNode = xctxt.getContextNode();
// System.out.println("currentNode: "+currentNode);
while(DTM.NULL != (n = cnl.nextNode()))
{
if(n == currentNode)
break;
}
}
// System.out.println("n: "+n);
// System.out.println("FuncPosition- cnl.getCurrentPos(): "+cnl.getCurrentPos());
return cnl.getCurrentPos();
}
// System.out.println("FuncPosition - out of guesses: -1");
return -1;
}