You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@xerces.apache.org by Elliotte Rusty Harold <el...@metalab.unc.edu> on 2000/02/25 01:23:36 UTC

Minor documentation bug in org.apache.xerces.framework.XMLParser

The last half of the API documentation for
org.apache.xerces.framework.XMLParser is in a monospaced font due to a
missing </pre> tag in the setNamespaces() method. In the HTML

 <pre>
 http://xml.org/sax/features/namespaces
 <pre>

should be

 <pre>
 http://xml.org/sax/features/namespaces
 </pre>

In the Java source code lines 826-828 which are

     * <pre>
     * http://xml.org/sax/features/namespaces
     * <pre>

should be

     * <pre>
     * http://xml.org/sax/features/namespaces
     * </pre>

 
+-----------------------+------------------------+-------------------+
| Elliotte Rusty Harold | elharo@metalab.unc.edu | Writer/Programmer |
+-----------------------+------------------------+-------------------+ 
|               Java I/O (O'Reilly & Associates, 1999)               |
|            http://metalab.unc.edu/javafaq/books/javaio/            |
|   http://www.amazon.com/exec/obidos/ISBN=1565924851/cafeaulaitA/   |
+----------------------------------+---------------------------------+
|  Read Cafe au Lait for Java News:  http://metalab.unc.edu/javafaq/ | 
|  Read Cafe con Leche for XML News: http://metalab.unc.edu/xml/     |
+----------------------------------+---------------------------------+