1. // $Id: XPathFunctionResolver.java,v 1.7 2004/04/01 16:07:17 ndw Exp $
  2. /*
  3. * @(#)XPathFunctionResolver.java 1.6 04/07/26
  4. *
  5. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  6. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  7. */
  8. package javax.xml.xpath;
  9. import javax.xml.namespace.QName;
  10. /**
  11. * <p><code>XPathFunctionResolver</code> provides access to the set of user defined <code>XPathFunction</code>s.</p>
  12. *
  13. * <p>XPath functions are resolved by name and arity.
  14. * The resolver is not needed for XPath built-in functions and the resolver
  15. * <strong><em>cannot</em></strong> be used to override those functions.</p>
  16. *
  17. * <p>In particular, the resolver is only called for functions in an another
  18. * namespace (functions with an explicit prefix). This means that you cannot
  19. * use the <code>XPathFunctionResolver</code> to implement specifications
  20. * like <a href="http://www.w3.org/TR/xmldsig-core/">XML-Signature Syntax
  21. * and Processing</a> which extend the function library of XPath 1.0 in the
  22. * same namespace. This is a consequence of the design of the resolver.</p>
  23. *
  24. * <p>If you wish to implement additional built-in functions, you will have to
  25. * extend the underlying implementation directly.</p>
  26. *
  27. * @author <a href="mailto:Norman.Walsh@Sun.com">Norman Walsh</a>
  28. * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
  29. * @version $Revision: 1.7 $, $Date: 2004/04/01 16:07:17 $
  30. * @see <a href="http://www.w3.org/TR/xpath#corelib">XML Path Language (XPath) Version 1.0, Core Function Library</a>
  31. * @since 1.5
  32. */
  33. public interface XPathFunctionResolver {
  34. /**
  35. * <p>Find a function in the set of available functions.</p>
  36. *
  37. * <p>If <code>functionName</code> or <code>arity</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
  38. *
  39. * @param functionName The function name.
  40. * @param arity The number of arguments that the returned function must accept.
  41. *
  42. * @return The function or <code>null</code> if no function named <code>functionName</code> with <code>arity</code> arguments exists.
  43. *
  44. * @throws NullPointerException If <code>functionName</code> or <code>arity</code> is <code>null</code>.
  45. */
  46. public XPathFunction resolveFunction(QName functionName, int arity);
  47. }