From f57c11bc8702e445758bf8c46e20d9ec830d3d94 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Sat, 15 Aug 2026 10:00:27 -0500 Subject: [PATCH 1/2] Document AccessibilityRecord properties Refs #246 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../AccessibilityRecord.xml | 54 ++++++++++++++++--- 1 file changed, 48 insertions(+), 6 deletions(-) diff --git a/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml b/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml index 204077740..db8c40da4 100644 --- a/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml +++ b/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml @@ -227,9 +227,23 @@ System.String - To be added. - To be added. + Gets the text before a change. -or- Sets the text before a change. + The text before a change. + Property getter documentation: + Gets the text before a change. + + + Java documentation for android.view.accessibility.AccessibilityRecord.getBeforeText(). + + + Property setter documentation: + Sets the text before a change. + + + Java documentation for android.view.accessibility.AccessibilityRecord.setBeforeText(CharSequence). + + 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. @@ -354,9 +368,23 @@ System.String - To be added. - To be added. + Gets the class name of the source. -or- Sets the class name of the source. + The class name of the source. + Property getter documentation: + Gets the class name of the source. + + + Java documentation for android.view.accessibility.AccessibilityRecord.getClassName(). + + + Property setter documentation: + Sets the class name of the source. + + + Java documentation for android.view.accessibility.AccessibilityRecord.setClassName(CharSequence). + + 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. @@ -428,9 +456,23 @@ System.String - To be added. - To be added. + Gets the description of the source. -or- Sets the description of the source. + The description of the source. + Property getter documentation: + Gets the description of the source. + + + Java documentation for android.view.accessibility.AccessibilityRecord.getContentDescription(). + + + Property setter documentation: + Sets the description of the source. + + + Java documentation for android.view.accessibility.AccessibilityRecord.setContentDescription(CharSequence). + + 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 b8b0211bc82c6fb3a91590c78420722d8df09b68 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Sat, 15 Aug 2026 10:11:20 -0500 Subject: [PATCH 2/2] Align AccessibilityRecord Java signatures Refs #246 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../xml/Android.Views.Accessibility/AccessibilityRecord.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml b/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml index db8c40da4..e89532031 100644 --- a/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml +++ b/docs/xml/Android.Views.Accessibility/AccessibilityRecord.xml @@ -241,7 +241,7 @@ Sets the text before a change. - Java documentation for android.view.accessibility.AccessibilityRecord.setBeforeText(CharSequence). + Java documentation for android.view.accessibility.AccessibilityRecord.setBeforeText(java.lang.CharSequence). 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. @@ -382,7 +382,7 @@ Sets the class name of the source. - Java documentation for android.view.accessibility.AccessibilityRecord.setClassName(CharSequence). + Java documentation for android.view.accessibility.AccessibilityRecord.setClassName(java.lang.CharSequence). 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. @@ -470,7 +470,7 @@ Sets the description of the source. - Java documentation for android.view.accessibility.AccessibilityRecord.setContentDescription(CharSequence). + Java documentation for android.view.accessibility.AccessibilityRecord.setContentDescription(java.lang.CharSequence). 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.