From 4cb2c3db13dcd5265749ce40c1de1dc3daf5109a Mon Sep 17 00:00:00 2001 From: Felipe Leme Date: Mon, 15 Apr 2019 12:27:22 -0700 Subject: [PATCH] Clarified format of ContentCaptureCondition.FLAG_IS_REGEX Test: make ds-docs Fixes: 130313634 Change-Id: I715ba4b7a1e3f3b13fbc521db925f716607763e6 --- .../android/view/contentcapture/ContentCaptureCondition.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/java/android/view/contentcapture/ContentCaptureCondition.java b/core/java/android/view/contentcapture/ContentCaptureCondition.java index 6f9d4d30909f7..54ebf55a0063b 100644 --- a/core/java/android/view/contentcapture/ContentCaptureCondition.java +++ b/core/java/android/view/contentcapture/ContentCaptureCondition.java @@ -35,7 +35,8 @@ import java.lang.annotation.RetentionPolicy; public final class ContentCaptureCondition implements Parcelable { /** - * When set, package should use the {@link LocusId#getId()} as a regular expression. + * When set, package should use the {@link LocusId#getId()} as a regular expression (using the + * {@link java.util.regex.Pattern} format). */ public static final int FLAG_IS_REGEX = 0x2;