String fmsg = XSLMessages.createXPATHMessage(
XPATHErrorResources.ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED, new Object[] { myQName.toString() } );
throw new XPathFunctionException ( fmsg );
}
XPathFunction xpathFunction =
resolver.resolveFunction( myQName, arity );
ArrayList argList = new ArrayList( arity);
for ( int i=0; i<arity; i++ ) {
Object argument = argVec.elementAt( i );
// XNodeSet object() returns NodeVector and not NodeList
// Explicitly getting NodeList by using nodelist()
if ( argument instanceof XNodeSet ) {
argList.add ( i, ((XNodeSet)argument).nodelist() );
} else if ( argument instanceof XObject ) {
Object passedArgument = ((XObject)argument).object();
argList.add ( i, passedArgument );
} else {
argList.add ( i, argument );
}
}
return ( xpathFunction.evaluate ( argList ));
} catch ( XPathFunctionException xfe ) {
// If we get XPathFunctionException then we want to terminate
// further execution by throwing WrappedRuntimeException
throw new org.apache.xml.utils.WrappedRuntimeException ( xfe );