mcnamara 2005/01/22 16:52:41
Modified: java/src/org/apache/xalan/xsltc/trax
TransformerFactoryImpl.java TransformerImpl.java
java/src/org/apache/xml/dtm DTM.java DTMAxisTraverser.java
DTMConfigurationException.java
java/src/org/apache/xml/res XMLMessages.java
java/src/org/apache/xml/serializer ToHTMLSAXHandler.java
ToSAXHandler.java ToStream.java ToTextStream.java
ToUnknownStream.java TransformStateSetter.java
WriterToASCI.java
java/src/org/apache/xml/serializer/utils
SerializerMessages.java
java/src/org/apache/xml/utils AttList.java
FastStringBuffer.java IntVector.java
ListingErrorHandler.java NodeVector.java
NSInfo.java PrefixResolverDefault.java
Log:
Clean up javadoc to reduce warnings during doc builds. See XALANJ-2048
Revision Changes Path
1.75 +6 -6
xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerFactoryImpl.java
Index: TransformerFactoryImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerFactoryImpl.java,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- TransformerFactoryImpl.java 15 Dec 2004 17:35:47 -0000 1.74
+++ TransformerFactoryImpl.java 23 Jan 2005 00:52:40 -0000 1.75
@@ -590,7 +590,7 @@
* Process the Source into a Templates object, which is a a compiled
* representation of the source.
*
- * @param stylesheet The input stylesheet - DOMSource not supported!!!
+ * @param source The input stylesheet - DOMSource not supported!!!
* @return A Templates object that can be used to create Transformers.
* @throws TransformerConfigurationException
*/
@@ -866,7 +866,7 @@
* Create an XMLFilter that uses the given source as the
* transformation instructions.
*
- * @param src The source of the transformation instructions.
+ * @param templates The source of the transformation instructions.
* @return An XMLFilter object, or null if this feature is not supported.
* @throws TransformerConfigurationException
*/
@@ -896,7 +896,7 @@
* invoking this method. It should still be possible for the application
* to process the document through to the end.
*
- * @param exception The warning information encapsulated in a
transformer
+ * @param e The warning information encapsulated in a transformer
* exception.
* @throws TransformerException if the application chooses to discontinue
* the transformation (always does in our case).
@@ -924,7 +924,7 @@
* Transformers are free to stop reporting events once this method has
* been invoked.
*
- * @param exception The warning information encapsulated in a transformer
+ * @param e warning information encapsulated in a transformer
* exception.
* @throws TransformerException if the application chooses to discontinue
* the transformation (always does in our case).
@@ -952,7 +952,7 @@
* transformation. It should still be possible for the application to
* process the document through to the end.
*
- * @param exception The warning information encapsulated in a transformer
+ * @param e The warning information encapsulated in a transformer
* exception.
* @throws TransformerException if the application chooses to discontinue
* the transformation (never does in our case).
1.83 +4 -4
xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerImpl.java
Index: TransformerImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerImpl.java,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- TransformerImpl.java 15 Jul 2004 05:07:27 -0000 1.82
+++ TransformerImpl.java 23 Jan 2005 00:52:40 -0000 1.83
@@ -1162,7 +1162,7 @@
* invoking this method. It should still be possible for the application
* to process the document through to the end.
*
- * @param exception The warning information encapsulated in a
transformer
+ * @param e The warning information encapsulated in a transformer
* exception.
* @throws TransformerException if the application chooses to discontinue
* the transformation (always does in our case).
@@ -1190,7 +1190,7 @@
* Transformers are free to stop reporting events once this method has
* been invoked.
*
- * @param exception The warning information encapsulated in a transformer
+ * @param e The warning information encapsulated in a transformer
* exception.
* @throws TransformerException if the application chooses to discontinue
* the transformation (always does in our case).
@@ -1218,7 +1218,7 @@
* transformation. It should still be possible for the application to
* process the document through to the end.
*
- * @param exception The warning information encapsulated in a transformer
+ * @param e The warning information encapsulated in a transformer
* exception.
* @throws TransformerException if the application chooses to discontinue
* the transformation (never does in our case).
1.14 +5 -20 xml-xalan/java/src/org/apache/xml/dtm/DTM.java
Index: DTM.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/DTM.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- DTM.java 16 Feb 2004 23:03:44 -0000 1.13
+++ DTM.java 23 Jan 2005 00:52:40 -0000 1.14
@@ -367,7 +367,7 @@
* @param nodeHandle the id of the node.
* @return int Node handle of owning document, or DTM.NULL if the node was
* a Document.
- * @see getDocumentRoot(int nodeHandle)
+ * @see #getDocumentRoot(int nodeHandle)
*/
public int getOwnerDocument(int nodeHandle);
@@ -378,7 +378,7 @@
* @return int Node handle of owning document, or the node itself if it was
* a Document. (Note difference from DOM, where getOwnerDocument returns
* null for the Document node.)
- * @see getOwnerDocument(int nodeHandle)
+ * @see #getOwnerDocument(int nodeHandle)
*/
public int getDocumentRoot(int nodeHandle);
@@ -439,8 +439,6 @@
* be returned. Any additional nodes that are created that have this
* expanded name will use this ID.
*
- * @param nodeHandle The handle to the node in question.
- *
* NEEDSDOC @param namespace
* NEEDSDOC @param localName
* NEEDSDOC @param type
@@ -502,7 +500,6 @@
* Given a node handle, return the prefix used to map to the namespace.
* (As defined in Namespaces, this is the portion of the name before any
* colon character).
- * @param postition int Handle of the node.
*
* <p> %REVIEW% Are you sure you want "" for no prefix? </p>
*
@@ -516,8 +513,6 @@
* Given a node handle, return its DOM-style namespace URI
* (As defined in Namespaces, this is the declared URI which this node's
* prefix -- or default in lieu thereof -- was mapped to.)
- * @param postition int Handle of the node.
- *
* @param nodeHandle the id of the node.
* @return String URI value of this node's namespace, or null if no
* namespace was resolved.
@@ -621,10 +616,7 @@
* beginning of the document entity, and has no value if there is no XML
* declaration.
*
- * @param the document handle
- *
- * NEEDSDOC @param documentHandle
- *
+ * @param documentHandle the document handle
* @return the document version String object
*/
public String getDocumentVersion(int documentHandle);
@@ -657,8 +649,6 @@
* no external subset or if it has no public identifier, this property
* has no value.
*
- * @param the document type declaration handle
- *
* @return the public identifier String object, or null if there is none.
*/
public String getDocumentTypeDeclarationPublicIdentifier();
@@ -787,9 +777,6 @@
* descriptions below) may be unknown. If it is true, those
properties
* are never unknown.
*
- *
- * @param the document handle
- *
* @param documentHandle A node handle that must identify a document.
* @return <code>true</code> if all declarations were processed;
* <code>false</code> otherwise.
@@ -801,9 +788,7 @@
* specified in the start-tag of its element, or was defaulted from
the
* DTD (or schema).
*
- * @param the attribute handle
- *
- * NEEDSDOC @param attributeHandle
+ * @param attributeHandle The attribute handle
* @return <code>true</code> if the attribute was specified;
* <code>false</code> if it was defaulted or the handle doesn't
* refer to an attribute node.
1.5 +3 -3
xml-xalan/java/src/org/apache/xml/dtm/DTMAxisTraverser.java
Index: DTMAxisTraverser.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/DTMAxisTraverser.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DTMAxisTraverser.java 16 Feb 2004 23:03:44 -0000 1.4
+++ DTMAxisTraverser.java 23 Jan 2005 00:52:40 -0000 1.5
@@ -90,7 +90,7 @@
* context is in the set, you must use the first() method instead.
*
* @return the next node in the iteration, or DTM.NULL.
- * @see first(int)
+ * @see #first(int)
*/
public abstract int next(int context, int current);
@@ -108,7 +108,7 @@
* @param extendedTypeID The extended type ID that must match.
*
* @return the next node in the iteration, or DTM.NULL.
- * @see first(int,int)
+ * @see #first(int,int)
*/
public abstract int next(int context, int current, int extendedTypeID);
}
1.6 +1 -3
xml-xalan/java/src/org/apache/xml/dtm/DTMConfigurationException.java
Index: DTMConfigurationException.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/DTMConfigurationException.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DTMConfigurationException.java 17 Aug 2004 18:57:21 -0000 1.5
+++ DTMConfigurationException.java 23 Jan 2005 00:52:40 -0000 1.6
@@ -59,8 +59,6 @@
* Create a new <code>DTMConfigurationException</code> with the
* given <code>Exception</code> base cause and detail message.
*
- * @param e The exception to be encapsulated in a
- * DTMConfigurationException
* @param msg The detail message.
* @param e The exception to be wrapped in a DTMConfigurationException
*/
1.7 +2 -7 xml-xalan/java/src/org/apache/xml/res/XMLMessages.java
Index: XMLMessages.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/res/XMLMessages.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- XMLMessages.java 15 Dec 2004 17:35:51 -0000 1.6
+++ XMLMessages.java 23 Jan 2005 00:52:40 -0000 1.7
@@ -70,7 +70,7 @@
* Creates a message from the specified key and replacement
* arguments, localized to the given locale.
*
- * @param errorCode The key for the message text.
+ * @param msgKey The key for the message text.
* @param args The arguments to be used as replacement text
* in the message created.
*
@@ -93,8 +93,6 @@
* Creates a message from the specified key and replacement
* arguments, localized to the given locale.
*
- * @param errorCode The key for the message text.
- *
* @param fResourceBundle The resource bundle to use.
* @param msgKey The message key to use.
* @param args The arguments to be used as replacement text
@@ -157,9 +155,6 @@
/**
* Return a named ResourceBundle for a particular locale. This method
mimics the behavior
* of ResourceBundle.getBundle().
- *
- * @param res the name of the resource to load.
- * @param locale the locale to prefer when searching for the bundle
*
* @param className The class name of the resource bundle.
* @return the ResourceBundle
1.12 +4 -11
xml-xalan/java/src/org/apache/xml/serializer/ToHTMLSAXHandler.java
Index: ToHTMLSAXHandler.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToHTMLSAXHandler.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ToHTMLSAXHandler.java 14 Oct 2004 21:45:05 -0000 1.11
+++ ToHTMLSAXHandler.java 23 Jan 2005 00:52:41 -0000 1.12
@@ -105,7 +105,7 @@
* Turns special character escaping on/off.
*
*
- * @param excape true if escaping is to be set on.
+ * @param escape true if escaping is to be set on.
*
* @see
org.apache.xml.serializer.SerializationHandler#setEscaping(boolean)
*/
@@ -224,15 +224,14 @@
* still be attached to the name.</p>
*
*
- * @param namespaceURI The Namespace URI, or the empty string if the
+ * @param uri The Namespace URI, or the empty string if the
* element has no Namespace URI or if Namespace
* processing is not being performed.
* @param localName The local name (without prefix), or the
* empty string if Namespace processing is not being
* performed.
- * @param name The qualified name (with prefix), or the
+ * @param qName The qualified name (with prefix), or the
* empty string if qualified names are not available.
- * @param name The element type name
* @throws org.xml.sax.SAXException Any SAX exception, possibly
* wrapping another exception.
* @see org.xml.sax.ContentHandler#endElement(String, String, String)
@@ -274,12 +273,6 @@
* <p>A SAX parser should never report an XML declaration (XML 1.0,
* section 2.8) or a text declaration (XML 1.0, section 4.3.1)
* using this method.</p>
- *
- * @param target The processing instruction target.
- * @param data The processing instruction data, or null if
- * none was supplied.
- * @throws org.xml.sax.SAXException Any SAX exception, possibly
- * wrapping another exception.
*
* @throws org.xml.sax.SAXException
* @see org.xml.sax.ContentHandler#processingInstruction(String, String)
1.14 +4 -4
xml-xalan/java/src/org/apache/xml/serializer/ToSAXHandler.java
Index: ToSAXHandler.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToSAXHandler.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ToSAXHandler.java 14 Oct 2004 21:45:05 -0000 1.13
+++ ToSAXHandler.java 23 Jan 2005 00:52:41 -0000 1.14
@@ -109,7 +109,7 @@
/**
* Receive notification of character data.
*
- * @param chars The string of characters to process.
+ * @param characters The string of characters to process.
*
* @throws org.xml.sax.SAXException
*
@@ -223,7 +223,7 @@
/**
* Sets the SAX ContentHandler.
- * @param m_saxHandler The ContentHandler to set
+ * @param _saxHandler The ContentHandler to set
*/
public void setContentHandler(ContentHandler _saxHandler)
{
@@ -332,7 +332,7 @@
/**
* An element starts, but attributes are not fully known yet.
*
- * @param elementName the element name, with prefix (if any).
+ * @param qName the element name, with prefix (if any).
* @see
org.apache.xml.serializer.ExtendedContentHandler#startElement(String)
*/
1.37 +6 -9
xml-xalan/java/src/org/apache/xml/serializer/ToStream.java
Index: ToStream.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToStream.java,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ToStream.java 16 Dec 2004 19:24:09 -0000 1.36
+++ ToStream.java 23 Jan 2005 00:52:41 -0000 1.37
@@ -194,8 +194,6 @@
* Serializes the DOM node. Throws an exception only if an I/O
* exception occured while serializing.
*
- * @param elem The element to serialize
- *
* @param node Node to serialize.
* @throws IOException An I/O exception occured while serializing
*/
@@ -754,7 +752,6 @@
}
/**
* Prints <var>n</var> spaces.
- * @param pw The character output stream to use.
* @param n Number of spaces to print.
*
* @throws org.xml.sax.SAXException if an error occurs when writing.
@@ -1766,13 +1763,13 @@
* that is associated with this element.
*
*
- * @param namespaceURI The Namespace URI, or the empty string if the
+ * @param elementNamespaceURI The Namespace URI, or the empty string if
the
* element has no Namespace URI or if Namespace
* processing is not being performed.
- * @param localName The local name (without prefix), or the
+ * @param elementLocalName The local name (without prefix), or the
* empty string if Namespace processing is not being
* performed.
- * @param name The element type name.
+ * @param elementName The element type name.
* @throws org.xml.sax.SAXException Any SAX exception, possibly
* wrapping another exception.
* @see org.xml.sax.ContentHandler#startElement
@@ -2505,7 +2502,7 @@
/**
* Adds a URI/LocalName pair of strings to the list.
*
- * @param name String of the form "{uri}local" or "local"
+ * @param URI_and_localName String of the form "{uri}local" or "local"
*
* @return a QName object
*/
@@ -2536,7 +2533,7 @@
* The "official way to set URI and localName pairs.
* This method should be used by both Xalan and XSLTC.
*
- * @param Vector URI_and_localNames a vector of pairs of Strings
(URI/local)
+ * @param URI_and_localNames a vector of pairs of Strings (URI/local)
*/
public void setCdataSectionElements(Vector URI_and_localNames)
{
1.19 +1 -2
xml-xalan/java/src/org/apache/xml/serializer/ToTextStream.java
Index: ToTextStream.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToTextStream.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ToTextStream.java 16 Dec 2004 19:24:09 -0000 1.18
+++ ToTextStream.java 23 Jan 2005 00:52:41 -0000 1.19
@@ -151,7 +151,6 @@
* performed.
* @param name The qualified name (with prefix), or the
* empty string if qualified names are not available.
- * @param name The element type name
* @throws org.xml.sax.SAXException Any SAX exception, possibly
* wrapping another exception.
*
1.10 +2 -2
xml-xalan/java/src/org/apache/xml/serializer/ToUnknownStream.java
Index: ToUnknownStream.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToUnknownStream.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ToUnknownStream.java 14 Oct 2004 21:45:05 -0000 1.9
+++ ToUnknownStream.java 23 Jan 2005 00:52:41 -0000 1.10
@@ -276,7 +276,7 @@
}
/**
* Adds an attribute to the currenly open tag
- * @param name the attribute name, with prefix (if any)
+ * @param rawName the attribute name, with prefix (if any)
* @param value the value of the parameter
* @see
org.apache.xml.serializer.ExtendedContentHandler#addAttribute(String, String)
*/
1.4 +3 -3
xml-xalan/java/src/org/apache/xml/serializer/TransformStateSetter.java
Index: TransformStateSetter.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/TransformStateSetter.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TransformStateSetter.java 14 Oct 2004 21:45:06 -0000 1.3
+++ TransformStateSetter.java 23 Jan 2005 00:52:41 -0000 1.4
@@ -40,14 +40,14 @@
/**
* Set the current node.
*
- * @param Node The current node.
+ * @param n The current node.
*/
void setCurrentNode(Node n);
/**
* Reset the state on the given transformer object.
*
- * @param Transformer
+ * @param transformer
*/
void resetState(Transformer transformer);
1.5 +2 -2
xml-xalan/java/src/org/apache/xml/serializer/WriterToASCI.java
Index: WriterToASCI.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/WriterToASCI.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- WriterToASCI.java 14 Oct 2004 21:45:05 -0000 1.4
+++ WriterToASCI.java 23 Jan 2005 00:52:41 -0000 1.5
@@ -93,7 +93,7 @@
/**
* Write a string.
*
- * @param str String to be written
+ * @param s String to be written
*
* @exception IOException If an I/O error occurs
*/
1.5 +2 -2
xml-xalan/java/src/org/apache/xml/serializer/utils/SerializerMessages.java
Index: SerializerMessages.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/serializer/utils/SerializerMessages.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- SerializerMessages.java 16 Dec 2004 19:21:59 -0000 1.4
+++ SerializerMessages.java 23 Jan 2005 00:52:41 -0000 1.5
@@ -28,7 +28,7 @@
* has the required getContents() method that returns
* an array of message-key/message associations.
* <p>
- * The message keys are defined in [EMAIL PROTECTED] MsgKeys}. The
+ * The message keys are defined in [EMAIL PROTECTED] MsgKey}. The
* messages that those keys map to are defined here.
* <p>
* The messages in the English version are intended to be
1.13 +4 -4 xml-xalan/java/src/org/apache/xml/utils/AttList.java
Index: AttList.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/utils/AttList.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- AttList.java 17 Feb 2004 04:21:14 -0000 1.12
+++ AttList.java 23 Jan 2005 00:52:41 -0000 1.13
@@ -116,7 +116,7 @@
* Look up an attribute's qualified name by index.
*
*
- * @param index The attribute index (zero-based).
+ * @param i The attribute index (zero-based).
*
* @return The attribute's qualified name
*/
@@ -129,7 +129,7 @@
* Get the attribute's node type by index
*
*
- * @param index The attribute index (zero-based)
+ * @param i The attribute index (zero-based)
*
* @return the attribute's node type
*/
@@ -142,7 +142,7 @@
* Get the attribute's node value by index
*
*
- * @param index The attribute index (zero-based)
+ * @param i The attribute index (zero-based)
*
* @return the attribute's node value
*/
1.27 +3 -5
xml-xalan/java/src/org/apache/xml/utils/FastStringBuffer.java
Index: FastStringBuffer.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/utils/FastStringBuffer.java,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- FastStringBuffer.java 15 Dec 2004 17:35:52 -0000 1.26
+++ FastStringBuffer.java 23 Jan 2005 00:52:41 -0000 1.27
@@ -66,7 +66,7 @@
* This should be used when normalize-to-SAX is called for the first
chunk of a
* multi-chunk output, or one following unsuppressed whitespace in a
previous
* chunk.
- * @see
sendNormalizedSAXcharacters(char[],int,int,org.xml.sax.ContentHandler,int)
+ * @see #sendNormalizedSAXcharacters(org.xml.sax.ContentHandler,int,int)
*/
public static final int SUPPRESS_LEADING_WS=0x01;
@@ -79,7 +79,7 @@
/** Manifest constant: Suppress both leading and trailing whitespace.
* This should be used when normalize-to-SAX is called for a complete
string.
* (I'm not wild about the name of this one. Ideas welcome.)
- * @see
sendNormalizedSAXcharacters(char[],int,int,org.xml.sax.ContentHandler,int)
+ * @see #sendNormalizedSAXcharacters(org.xml.sax.ContentHandler,int,int)
*/
public static final int SUPPRESS_BOTH
= SUPPRESS_LEADING_WS | SUPPRESS_TRAILING_WS;
@@ -236,8 +236,6 @@
* <p>
* ISSUE: Should this call assert initial size, or fixed size?
* Now configured as initial, with a default for fixed.
- *
- * @param
*
* NEEDSDOC @param initChunkBits
*/
1.9 +3 -3 xml-xalan/java/src/org/apache/xml/utils/IntVector.java
Index: IntVector.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/utils/IntVector.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- IntVector.java 17 Feb 2004 04:21:14 -0000 1.8
+++ IntVector.java 23 Jan 2005 00:52:41 -0000 1.9
@@ -169,7 +169,7 @@
/**
* Append several slots onto the vector, but do not set the values.
*
- * @param value Int to add to the list
+ * @param numberOfElements Int to add to the list
*/
public final void addElements(int numberOfElements)
{
@@ -297,7 +297,7 @@
* The index must be a value greater than or equal to 0 and less
* than the current size of the vector.
*
- * @param node object to set
+ * @param value object to set
* @param index Index of where to set the object
*/
public final void setElementAt(int value, int index)
1.8 +5 -5
xml-xalan/java/src/org/apache/xml/utils/ListingErrorHandler.java
Index: ListingErrorHandler.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/utils/ListingErrorHandler.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ListingErrorHandler.java 17 Feb 2004 04:21:14 -0000 1.7
+++ ListingErrorHandler.java 23 Jan 2005 00:52:41 -0000 1.8
@@ -477,7 +477,7 @@
* an exception when we're called for various warning /
* error / fatalErrors, or simply log them and continue.</p>
*
- * @param t if we should throw an exception on warnings
+ * @param b if we should throw an exception on warnings
*/
public void setThrowOnWarning(boolean b)
{
@@ -509,7 +509,7 @@
* <p>Note that the behavior of many parsers/transformers
* after an error is not necessarily defined!</p>
*
- * @param t if we should throw an exception on errors
+ * @param b if we should throw an exception on errors
*/
public void setThrowOnError(boolean b)
{
@@ -542,7 +542,7 @@
* after a fatalError is not necessarily defined, most
* products will probably barf if you continue.</p>
*
- * @param t if we should throw an exception on fatalErrors
+ * @param b if we should throw an exception on fatalErrors
*/
public void setThrowOnFatalError(boolean b)
{
1.11 +1 -5 xml-xalan/java/src/org/apache/xml/utils/NodeVector.java
Index: NodeVector.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/utils/NodeVector.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- NodeVector.java 17 Aug 2004 18:57:22 -0000 1.10
+++ NodeVector.java 23 Jan 2005 00:52:41 -0000 1.11
@@ -728,10 +728,6 @@
/**
* Sort an array using a quicksort algorithm.
*
- * @param a The array to be sorted.
- * @param lo0 The low index.
- * @param hi0 The high index.
- *
* @throws Exception
*/
public void sort() throws Exception
1.6 +2 -2 xml-xalan/java/src/org/apache/xml/utils/NSInfo.java
Index: NSInfo.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/utils/NSInfo.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- NSInfo.java 17 Feb 2004 04:21:14 -0000 1.5
+++ NSInfo.java 23 Jan 2005 00:52:41 -0000 1.6
@@ -55,7 +55,7 @@
* have been processed for this node
* @param hasXMLNSAttrs Flag indicating whether this node
* has XMLNS attributes.
- * @param hasXMLNSAttrs Flag indicating whether one of this node's
+ * @param ancestorHasXMLNSAttrs Flag indicating whether one of this node's
* ancestor has XMLNS attributes.
*/
public NSInfo(boolean hasProcessedNS, boolean hasXMLNSAttrs,
1.10 +1 -4
xml-xalan/java/src/org/apache/xml/utils/PrefixResolverDefault.java
Index: PrefixResolverDefault.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/utils/PrefixResolverDefault.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- PrefixResolverDefault.java 20 Feb 2004 20:32:51 -0000 1.9
+++ PrefixResolverDefault.java 23 Jan 2005 00:52:41 -0000 1.10
@@ -42,9 +42,6 @@
* which XPath expression prefixes will be resolved.
* Warning: This will not work correctly if xpathExpressionContext
* is an attribute node.
- * @param xpathExpressionContext Node from which to start searching for a
- * xmlns attribute that binds a prefix to a namespace (when the namespace
- * context is not specified in the getNamespaceForPrefix call).
*/
public PrefixResolverDefault(Node xpathExpressionContext)
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]