You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/03/25 16:05:30 UTC

[Bug 1106] New - JavaDoc has extra parameters on execute() method

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1106

*** shadow/1106	Sun Mar 25 06:05:30 2001
--- shadow/1106.tmp.9532	Sun Mar 25 06:05:30 2001
***************
*** 0 ****
--- 1,38 ----
+ +============================================================================+
+ | JavaDoc has extra parameters on execute() method                           |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 1106                        Product: XalanJ2                 |
+ |       Status: NEW                         Version: 2.0.1                   |
+ |   Resolution:                            Platform: All                     |
+ |     Severity: Minor                    OS/Version: All                     |
+ |     Priority: Low                       Component: org.apache.xpath        |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: xalan-dev@xml.apache.org                                     |
+ |  Reported By: elharo@metalab.unc.edu                                       |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL: http://xml.apache.org/xalan-j/apidocs/org/apache/xpath/XPath |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ The JavaDoc for the execute() method in org.apache.xpath.XPath has three more 
+ paramaters than the method actually has. The last three should be deleted. That 
+ is, what you have is 
+ 
+ Parameters:
+             xctxt - The execution context.
+             contextNode - The node that "." expresses.
+             namespaceContext - The context in which namespaces in the XPath are 
+ supposed to be expanded.
+             callback - Interface that implements the processLocatedNode method.
+             callbackInfo - Object that will be passed to the processLocatedNode 
+ method.
+             stopAtFirst - True if the search should stop once the first node in 
+ document order is found
+ 
+ This should be just
+ 
+ Parameters:
+             xctxt - The execution context.
+             contextNode - The node that "." expresses.
+             namespaceContext - The context in which namespaces in the XPath are 
+ supposed to be expanded.