mcnamara 2005/01/22 16:10:05
Modified: java/src/org/apache/xalan/extensions
XSLProcessorContext.java
ExtensionHandlerJavaPackage.java
ExtensionHandlerJavaClass.java
ExtensionHandlerGeneral.java
ExtensionHandlerExsltFunction.java
ExtensionHandler.java ExpressionVisitor.java
Log:
Clean up javadoc to reduce warnings during doc builds. See XALANJ-2048.
Revision Changes Path
1.19 +1 -4
xml-xalan/java/src/org/apache/xalan/extensions/XSLProcessorContext.java
Index: XSLProcessorContext.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/XSLProcessorContext.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- XSLProcessorContext.java 11 Feb 2004 05:26:23 -0000 1.18
+++ XSLProcessorContext.java 23 Jan 2005 00:10:05 -0000 1.19
@@ -58,9 +58,6 @@
*
* @param transformer non-null transformer instance
* @param stylesheetTree The owning stylesheet
- * @param sourceTree The source document
- * @param sourceNode The current source node
- * @param mode the current mode being executed.
*/
public XSLProcessorContext(TransformerImpl transformer,
Stylesheet stylesheetTree)
1.21 +4 -8
xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerJavaPackage.java
Index: ExtensionHandlerJavaPackage.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerJavaPackage.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ExtensionHandlerJavaPackage.java 15 Dec 2004 17:35:30 -0000 1.20
+++ ExtensionHandlerJavaPackage.java 23 Jan 2005 00:10:05 -0000 1.21
@@ -119,7 +119,7 @@
* Tests whether a certain element name is known within this namespace.
* Looks for a method with the appropriate name and signature.
* This method examines both static and instance methods.
- * @param function name of the function being tested
+ * @param element name of the element being tested
* @return true if its known, false if not.
*/
@@ -191,7 +191,8 @@
*
* @param funcName Function name.
* @param args The arguments of the function call.
- *
+ * @param methodKey A key that uniquely identifies this class and method
call.
+ * @param exprContext The context in which this expression is being
executed.
* @return the return value of the function evaluation.
*
* @throws TransformerException if parsing trouble
@@ -434,11 +435,6 @@
* @param element The extension element being processed.
* @param transformer Handle to TransformerImpl.
* @param stylesheetTree The compiled stylesheet tree.
- * @param mode The current mode.
- * @param sourceTree The root of the source tree (but don't assume
- * it's a Document).
- * @param sourceNode The current context node.
- * @param mode The current mode.
* @param methodKey A key that uniquely identifies this element call.
* @throws IOException if loading trouble
* @throws TransformerException if parsing trouble
1.21 +1 -5
xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerJavaClass.java
Index: ExtensionHandlerJavaClass.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerJavaClass.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ExtensionHandlerJavaClass.java 15 Dec 2004 17:35:30 -0000 1.20
+++ ExtensionHandlerJavaClass.java 23 Jan 2005 00:10:05 -0000 1.21
@@ -441,10 +441,6 @@
* @param element The extension element being processed.
* @param transformer Handle to TransformerImpl.
* @param stylesheetTree The compiled stylesheet tree.
- * @param sourceTree The root of the source tree (but don't assume
- * it's a Document).
- * @param sourceNode The current context node.
- * @param mode The current mode.
* @param methodKey A key that uniquely identifies this element call.
* @throws IOException if loading trouble
* @throws TransformerException if parsing trouble
1.26 +2 -11
xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerGeneral.java
Index: ExtensionHandlerGeneral.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerGeneral.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ExtensionHandlerGeneral.java 2 Nov 2004 15:05:25 -0000 1.25
+++ ExtensionHandlerGeneral.java 23 Jan 2005 00:10:05 -0000 1.26
@@ -104,13 +104,10 @@
* @param namespaceUri the extension namespace URI that I'm implementing
* @param elemNames Vector of element names
* @param funcNames string containing list of functions of extension NS
- * @param lang language of code implementing the extension
- * @param srcURL value of src attribute (if any) - treated as a URL
- * or a classname depending on the value of lang. If
- * srcURL is not null, then scriptSrc is ignored.
* @param scriptLang Scripting language of implementation
* @param scriptSrcURL URL of source script
* @param scriptSrc the actual script code (if any)
+ * @param systemId
*
* @throws TransformerException
*/
@@ -252,8 +249,6 @@
/**
* Tests whether a certain element name is known within this namespace.
- * @param function name of the function being tested
- *
* @param element name of the element being tested
* @return true if its known, false if not.
*/
@@ -357,10 +352,6 @@
* @param element The extension element being processed.
* @param transformer Handle to TransformerImpl.
* @param stylesheetTree The compiled stylesheet tree.
- * @param mode The current mode.
- * @param sourceTree The root of the source tree (but don't assume
- * it's a Document).
- * @param sourceNode The current context node.
* @param methodKey A key that uniquely identifies this class and method
call.
*
* @throws XSLProcessorException thrown if something goes wrong
1.9 +2 -2
xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerExsltFunction.java
Index: ExtensionHandlerExsltFunction.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandlerExsltFunction.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ExtensionHandlerExsltFunction.java 11 Feb 2004 20:43:48 -0000
1.8
+++ ExtensionHandlerExsltFunction.java 23 Jan 2005 00:10:05 -0000
1.9
@@ -105,7 +105,7 @@
* Note: The EXSLT function element is a template-level element, and
* element-available() returns false for it.
*
- * @param Local name of the function.
+ * @param elemName name of the element.
* @return true if the function is available.
*/
public boolean isElementAvailable(String elemName)
1.22 +3 -9
xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandler.java
Index: ExtensionHandler.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/ExtensionHandler.java,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ExtensionHandler.java 23 Feb 2004 10:29:34 -0000 1.21
+++ ExtensionHandler.java 23 Jan 2005 00:10:05 -0000 1.22
@@ -86,8 +86,6 @@
/**
* Tests whether a certain element name is known within this namespace.
- * @param function name of the function being tested
- *
* @param element Name of element to check
* @return true if its known, false if not.
*/
@@ -130,12 +128,8 @@
*
* @param localPart Element name's local part.
* @param element The extension element being processed.
- * @param transformer Handle to TransformerImpl.
+ * @param transformer Handle to TransformerImpl.
* @param stylesheetTree The compiled stylesheet tree.
- * @param mode The current mode.
- * @param sourceTree The root of the source tree (but don't assume
- * it's a Document).
- * @param sourceNode The current context node.
* @param methodKey A key that uniquely identifies this class and
method call.
*
* @throws XSLProcessorException thrown if something goes wrong
@@ -143,7 +137,7 @@
* @throws MalformedURLException if loading trouble
* @throws FileNotFoundException if loading trouble
* @throws IOException if loading trouble
- * @throws TransformerException if parsing trouble
+ * @throws TransformerException if parsing trouble
*/
public abstract void processElement(
String localPart, ElemTemplateElement element, TransformerImpl
transformer,
1.8 +2 -2
xml-xalan/java/src/org/apache/xalan/extensions/ExpressionVisitor.java
Index: ExpressionVisitor.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/extensions/ExpressionVisitor.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ExpressionVisitor.java 11 Feb 2004 05:26:23 -0000 1.7
+++ ExpressionVisitor.java 23 Jan 2005 00:10:05 -0000 1.8
@@ -53,7 +53,7 @@
* If the function is an extension function, register the namespace.
*
* @param owner The current XPath object that owns the expression.
- * @param function The function currently being visited.
+ * @param func The function currently being visited.
*
* @return true to continue the visit in the subtree, if any.
*/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]