-
Bug
-
Resolution: Won't Fix
-
P5
-
None
-
1.1.1, 1.4.1
-
generic
-
generic
Name: eaR10174 Date: 07/13/2001
There is a typo in the description of the
org.xml.sax.helpers.NamespaceSupport.processName()
(builds jaxp-1.1.1-b26-09_jul_2001, jdk1.4.0beta-b70):
"public String[] processName(String qName, String[] parts, boolean isAttribute)
...
Note that attribute names are processed differently than element names: an
unprefixed element name will received the default Namespace (if any), while
an unprefixed element name will not."
^^^^^^^^^^^^^^^^^^^^^^^
I believe the last occurence of the "element" word should be replaced with
"attribute" :
"public String[] processName(String qName, String[] parts, boolean isAttribute)
...
Note that attribute names are processed differently than element names: an
unprefixed element name will received the default Namespace (if any), while
an unprefixed attribute name will not."
^^^^^^^^^^^^^^^^^^^^^^^
======================================================================