From 5f2e02b4fbb42dbdebd7fbf8f3c1bfce4000b114 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Fri, 14 Aug 2026 18:33:44 -0500 Subject: [PATCH 1/3] Document DocumentBuilder parsing APIs Refs #280 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../xml/Javax.Xml.Parsers/DocumentBuilder.xml | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml b/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml index faaf88b38..31fb8ab09 100644 --- a/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml +++ b/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml @@ -588,9 +588,9 @@ - To be added. - To be added. - To be added. + The file containing the XML to parse. + Parses the content of the given file as an XML document. + A task whose result is a new DOM document. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -619,9 +619,9 @@ - To be added. - To be added. - To be added. + The input source containing the content to parse. + Parses the content of the given input source as an XML document. + A task whose result is a new DOM document. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -650,9 +650,9 @@ - To be added. - To be added. - To be added. + The input stream containing the content to parse. + Parses the content of the given input stream as an XML document. + A task whose result is a new DOM document. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -681,9 +681,9 @@ - To be added. - To be added. - To be added. + The location of the content to parse. + Parses the content of the given URI as an XML document. + A task whose result is a new DOM document. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -713,10 +713,10 @@ - To be added. - To be added. - To be added. - To be added. + The input stream containing the content to parse. + A base URI for resolving relative URIs. + Parses the content of the given input stream as an XML document. + A task whose result is a new DOM document. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. From e37c666168b286f3a6735d8cdbdf39f48e520d04 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Fri, 14 Aug 2026 18:44:28 -0500 Subject: [PATCH 2/3] Clarify DocumentBuilder parsing tasks Refs #280 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml b/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml index 31fb8ab09..a32c68c81 100644 --- a/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml +++ b/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml @@ -590,7 +590,7 @@ The file containing the XML to parse. Parses the content of the given file as an XML document. - A task whose result is a new DOM document. + A task that represents the parsing operation. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -621,7 +621,7 @@ The input source containing the content to parse. Parses the content of the given input source as an XML document. - A task whose result is a new DOM document. + A task that represents the parsing operation. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -652,7 +652,7 @@ The input stream containing the content to parse. Parses the content of the given input stream as an XML document. - A task whose result is a new DOM document. + A task that represents the parsing operation. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -683,7 +683,7 @@ The location of the content to parse. Parses the content of the given URI as an XML document. - A task whose result is a new DOM document. + A task that represents the parsing operation. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. @@ -716,7 +716,7 @@ The input stream containing the content to parse. A base URI for resolving relative URIs. Parses the content of the given input stream as an XML document. - A task whose result is a new DOM document. + A task that represents the parsing operation. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. From f566a0209b42d8ce0d2cbe5ef01b0b09eac92979 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Fri, 14 Aug 2026 18:55:06 -0500 Subject: [PATCH 3/3] Clarify DocumentBuilder base URI parsing Refs #280 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml b/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml index a32c68c81..860b3fd86 100644 --- a/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml +++ b/docs/xml/Javax.Xml.Parsers/DocumentBuilder.xml @@ -715,7 +715,7 @@ The input stream containing the content to parse. A base URI for resolving relative URIs. - Parses the content of the given input stream as an XML document. + Parses the content of the given input stream as an XML document, using the specified base URI to resolve relative URIs. A task that represents the parsing operation. Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.