src/java.xml/share/classes/javax/xml/xpath/XPathFunction.java
changeset 47826 7f06714e7f0b
parent 47359 e1a6c0168741
child 48412 d4412e380f6b
equal deleted inserted replaced
47825:13e39ca700d0 47826:7f06714e7f0b
    49    *
    49    *
    50    * @return The result of evaluating the <code>XPath</code> function as an <code>Object</code>.
    50    * @return The result of evaluating the <code>XPath</code> function as an <code>Object</code>.
    51    *
    51    *
    52    * @throws XPathFunctionException If <code>args</code> cannot be evaluated with this <code>XPath</code> function.
    52    * @throws XPathFunctionException If <code>args</code> cannot be evaluated with this <code>XPath</code> function.
    53    */
    53    */
    54   public Object evaluate(List<Object> args)
    54   public Object evaluate(List<?> args)
    55     throws XPathFunctionException;
    55     throws XPathFunctionException;
    56 }
    56 }