Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df0cefab authored by Felipe Leme's avatar Felipe Leme
Browse files

Clarified that some autofill interfaces can only be implemented by the system.

Test:  mmm -j frameworks/base/:doc-comment-check-docs

Fixes: 113323194

Change-Id: Ic0bea0e16fca0ce4c67d36f5611587843d7aad9f
(cherry picked from commit d5225e13)
parent 3667b712
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -21,6 +21,9 @@ package android.service.autofill;
 * <p>Typically used to avoid displaying the save UI for values that are autofilled but reformatted
 * by the app&mdash;for example, if the autofill service sends a credit card number
 * value as "004815162342108" and the app automatically changes it to "0048 1516 2342 108".
 *
 * <p><b>Note:</b> This interface is not meant to be implemented by app developers; only
 * implementations provided by the Android System can be used in other Autofill APIs.
 */
public interface Sanitizer {
}
+3 −0
Original line number Diff line number Diff line
@@ -20,6 +20,9 @@ package android.service.autofill;
 * template} at runtime, using the values of fields contained in the screen.
 *
 * <p>Typically used by {@link CustomDescription} to provide a customized autofill save UI.
 *
 * <p><b>Note:</b> This interface is not meant to be implemented by app developers; only
 * implementations provided by the Android System can be used in other Autofill APIs.
 */
public interface Transformation {
}