Return-Path: Delivered-To: apmail-xml-xalan-cvs-archive@www.apache.org Received: (qmail 66596 invoked from network); 22 Oct 2003 17:45:32 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 22 Oct 2003 17:45:32 -0000 Received: (qmail 77927 invoked by uid 500); 22 Oct 2003 17:45:11 -0000 Delivered-To: apmail-xml-xalan-cvs-archive@xml.apache.org Received: (qmail 77909 invoked by uid 500); 22 Oct 2003 17:45:11 -0000 Mailing-List: contact xalan-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: Delivered-To: mailing list xalan-cvs@xml.apache.org Received: (qmail 77870 invoked from network); 22 Oct 2003 17:45:11 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 22 Oct 2003 17:45:11 -0000 Received: (qmail 66373 invoked by uid 1663); 22 Oct 2003 17:45:19 -0000 Date: 22 Oct 2003 17:45:18 -0000 Message-ID: <20031022174518.66372.qmail@minotaur.apache.org> From: minchau@apache.org To: xml-xalan-cvs@apache.org Subject: cvs commit: xml-xalan/java/src/org/apache/xml/serializer ToUnknownStream.java EmptySerializer.java ToHTMLStream.java ToXMLSAXHandler.java AttributesImplSerializer.java ToXMLStream.java NamespaceMappings.java ToHTMLSAXHandler.java ToTextSAXHandler.java ToStream.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N minchau 2003/10/22 10:45:18 Modified: java/src/org/apache/xml/serializer ToUnknownStream.java EmptySerializer.java ToHTMLStream.java ToXMLSAXHandler.java AttributesImplSerializer.java ToXMLStream.java NamespaceMappings.java ToHTMLSAXHandler.java ToTextSAXHandler.java ToStream.java Log: PR: bugzilla 23983 Submitted by: Brian Minchau Revision Changes Path 1.7 +4 -4 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.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ToUnknownStream.java 6 Oct 2003 14:33:07 -0000 1.6 +++ ToUnknownStream.java 22 Oct 2003 17:45:18 -0000 1.7 @@ -312,7 +312,7 @@ * Adds an attribute to the currenly open tag * @param name the attribute name, with prefix (if any) * @param value the value of the parameter - * @see org.apache.xml.serializer.ExtendedContentHandler#attribute(String, String) + * @see org.apache.xml.serializer.ExtendedContentHandler#addAttribute(String, String) */ public void addAttribute(String rawName, String value) { @@ -371,8 +371,8 @@ /** * @see org.xml.sax.ContentHandler#startPrefixMapping(String, String) - * @ param prefix The prefix that maps to the URI - * @ param uri The URI for the namespace + * @param prefix The prefix that maps to the URI + * @param uri The URI for the namespace */ public void startPrefixMapping(String prefix, String uri) throws SAXException { @@ -1254,7 +1254,7 @@ } /** - * @see org.apache.xml.serializer.SerializationHandler#getPrefix() + * @see org.apache.xml.serializer.ExtendedContentHandler#getPrefix */ public String getPrefix(String namespaceURI) { 1.4 +1 -1 xml-xalan/java/src/org/apache/xml/serializer/EmptySerializer.java Index: EmptySerializer.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/serializer/EmptySerializer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- EmptySerializer.java 6 Oct 2003 14:33:07 -0000 1.3 +++ EmptySerializer.java 22 Oct 2003 17:45:18 -0000 1.4 @@ -568,7 +568,7 @@ return null; } /** - * @see org.apache.xml.serializer.XSLOutputAttributes#setCdataSectionElements(java.util.Hashtable) + * @see org.apache.xml.serializer.XSLOutputAttributes#setCdataSectionElements */ public void setCdataSectionElements(Hashtable h) throws Exception { 1.25 +1 -1 xml-xalan/java/src/org/apache/xml/serializer/ToHTMLStream.java Index: ToHTMLStream.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToHTMLStream.java,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ToHTMLStream.java 5 Oct 2003 14:10:45 -0000 1.24 +++ ToHTMLStream.java 22 Oct 2003 17:45:18 -0000 1.25 @@ -1860,7 +1860,7 @@ * @param name the qualified name of the attribute * @param value the value of the attribute which can contain only * ASCII printable characters characters in the range 32 to 127 inclusive. - * @flags the bit values of this integer give optimization information. + * @param flags the bit values of this integer give optimization information. */ public void addUniqueAttribute(String name, String value, int flags) throws SAXException 1.11 +3 -3 xml-xalan/java/src/org/apache/xml/serializer/ToXMLSAXHandler.java Index: ToXMLSAXHandler.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToXMLSAXHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ToXMLSAXHandler.java 21 Oct 2003 23:18:55 -0000 1.10 +++ ToXMLSAXHandler.java 22 Oct 2003 17:45:18 -0000 1.11 @@ -121,7 +121,7 @@ } /** - * @see org.apache.xml.serializer.SerializationHandler#indent(int) + * Do nothing for SAX. */ public void indent(int n) throws SAXException { @@ -350,8 +350,8 @@ /** * @see org.xml.sax.ContentHandler#startPrefixMapping(String, String) - * @ param prefix The prefix that maps to the URI - * @ param uri The URI for the namespace + * @param prefix The prefix that maps to the URI + * @param uri The URI for the namespace */ public void startPrefixMapping(String prefix, String uri) throws SAXException 1.3 +2 -2 xml-xalan/java/src/org/apache/xml/serializer/AttributesImplSerializer.java Index: AttributesImplSerializer.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/serializer/AttributesImplSerializer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- AttributesImplSerializer.java 27 May 2003 20:38:42 -0000 1.2 +++ AttributesImplSerializer.java 22 Oct 2003 17:45:18 -0000 1.3 @@ -126,7 +126,7 @@ * @param val the value of the attribute * * @see org.xml.sax.helpers.AttributesImpl#addAttribute(String, String, String, String, String) - * @see getIndex(String) + * @see #getIndex(String) */ public void addAttribute( String uri, @@ -200,7 +200,7 @@ * getIndex(qName). * @param atts the attributes to copy into these attributes. * @see org.xml.sax.helpers.AttributesImpl#setAttributes(Attributes) - * @see getIndex(String) + * @see #getIndex(String) */ public void setAttributes(Attributes atts) { 1.9 +1 -1 xml-xalan/java/src/org/apache/xml/serializer/ToXMLStream.java Index: ToXMLStream.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToXMLStream.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ToXMLStream.java 25 Jun 2003 17:05:02 -0000 1.8 +++ ToXMLStream.java 22 Oct 2003 17:45:18 -0000 1.9 @@ -393,7 +393,7 @@ * @param name the qualified name of the attribute * @param value the value of the attribute which can contain only * ASCII printable characters characters in the range 32 to 127 inclusive. - * @flags the bit values of this integer give optimization information. + * @param flags the bit values of this integer give optimization information. */ public void addUniqueAttribute(String name, String value, int flags) throws SAXException 1.4 +1 -1 xml-xalan/java/src/org/apache/xml/serializer/NamespaceMappings.java Index: NamespaceMappings.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/serializer/NamespaceMappings.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- NamespaceMappings.java 7 Jul 2003 06:23:51 -0000 1.3 +++ NamespaceMappings.java 22 Oct 2003 17:45:18 -0000 1.4 @@ -304,7 +304,7 @@ /** * This method makes a clone of this object. - * @see java.lang.Object#clone() + * */ public Object clone() throws CloneNotSupportedException { NamespaceMappings clone = new NamespaceMappings(); 1.7 +3 -3 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.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ToHTMLSAXHandler.java 6 Oct 2003 14:33:07 -0000 1.6 +++ ToHTMLSAXHandler.java 22 Oct 2003 17:45:18 -0000 1.7 @@ -120,7 +120,7 @@ /** * Does nothing. - * @see org.apache.xml.serializer.SerializationHandler#indent(int) + * */ public void indent(int n) throws SAXException { @@ -452,7 +452,7 @@ * * @throws org.xml.sax.SAXException * - * @see org.xml.sax.ContentHander#endDocument() + * */ public void endDocument() throws SAXException { @@ -665,7 +665,7 @@ * that is soon to follow. Need to close any open start tag to make * sure than any name space attributes due to this event are associated wih * the up comming element, not the current one. - * @see org.xml.sax.ExtendedContentHandler#startPrefixMapping + * @see org.apache.xml.serializer.ExtendedContentHandler#startPrefixMapping * * @param prefix The Namespace prefix being declared. * @param uri The Namespace URI the prefix is mapped to. 1.4 +2 -2 xml-xalan/java/src/org/apache/xml/serializer/ToTextSAXHandler.java Index: ToTextSAXHandler.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/serializer/ToTextSAXHandler.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ToTextSAXHandler.java 25 Jun 2003 17:05:03 -0000 1.3 +++ ToTextSAXHandler.java 22 Oct 2003 17:45:18 -0000 1.4 @@ -158,8 +158,8 @@ /** * Does nothing because - * the indent attribute is ignored for text output - * @see org.apache.xml.serializer.SerializationHandler#indent(int) + * the indent attribute is ignored for text output. + * */ public void indent(int n) throws SAXException { 1.25 +1 -1 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.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ToStream.java 16 Oct 2003 15:20:54 -0000 1.24 +++ ToStream.java 22 Oct 2003 17:45:18 -0000 1.25 @@ -2098,7 +2098,7 @@ * that is soon to follow. Need to close any open start tag to make * sure than any name space attributes due to this event are associated wih * the up comming element, not the current one. - * @see org.xml.sax.ExtendedContentHandler#startPrefixMapping + * @see org.apache.xml.serializer.ExtendedContentHandler#startPrefixMapping * * @param prefix The Namespace prefix being declared. * @param uri The Namespace URI the prefix is mapped to. --------------------------------------------------------------------- To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org For additional commands, e-mail: xalan-cvs-help@xml.apache.org