From 68b63d3f928b6a83468e773e7afd6d6c6c4d4ce0 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Sun, 16 Aug 2026 11:22:28 -0500 Subject: [PATCH 1/3] Fix SAX parser factory feature documentation Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml b/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml index 00e21d15d..54a6c4c11 100644 --- a/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml +++ b/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml @@ -123,7 +123,7 @@ The name of the property to be retrieved. Returns the particular property requested for in the underlying - implementation of org. + org.xml.sax.XMLReader implementation. Value of the requested property. Returns the particular property requested for in the underlying @@ -143,7 +143,7 @@ if a parser cannot be created which satisfies the requested configuration. When the underlying XMLReader does not recognize the property name. When the underlying XMLReader recognizes the property name but doesn't support the property. - + From f0306730ec6ba590b28cd3e4a189466f4ff242e3 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Sun, 16 Aug 2026 11:33:19 -0500 Subject: [PATCH 2/3] Clarify SAX parser feature documentation Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml b/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml index 54a6c4c11..8c4036371 100644 --- a/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml +++ b/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml @@ -121,12 +121,12 @@ - The name of the property to be retrieved. - Returns the particular property requested for in the underlying + The fully qualified URI that names the feature to retrieve. + Returns the value of a feature flag in the underlying org.xml.sax.XMLReader implementation. - Value of the requested property. + The current value of the feature. - Returns the particular property requested for in the underlying + Returns the value of a feature flag in the underlying implementation of org.xml.sax.XMLReader. @@ -141,8 +141,8 @@ if a parser cannot be created which satisfies the requested configuration. - When the underlying XMLReader does not recognize the property name. - When the underlying XMLReader recognizes the property name but doesn't support the property. + When the underlying XMLReader does not recognize the feature name. + When the underlying XMLReader recognizes the feature name but does not support the feature. From 4d4799a5c55b95e3561969407047c76668311c0d Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Mon, 17 Aug 2026 20:17:58 -0500 Subject: [PATCH 3/3] Document SAX feature null contract Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: ace5a652-6858-4217-ad52-88acabed5506 --- docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml b/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml index 8c4036371..c03355883 100644 --- a/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml +++ b/docs/xml/Javax.Xml.Parsers/SAXParserFactory.xml @@ -121,7 +121,7 @@ - The fully qualified URI that names the feature to retrieve. + The non-null, fully qualified URI that names the feature to retrieve. Returns the value of a feature flag in the underlying org.xml.sax.XMLReader implementation. The current value of the feature. @@ -143,6 +143,7 @@ if a parser cannot be created which satisfies the requested configuration. When the underlying XMLReader does not recognize the feature name. When the underlying XMLReader recognizes the feature name but does not support the feature. + If the name parameter is null.