OSDN Git Service

Fixed javadoc for View.setContentCaptureSession().
authorFelipe Leme <felipeal@google.com>
Tue, 14 May 2019 23:23:05 +0000 (16:23 -0700)
committerFelipe Leme <felipeal@google.com>
Thu, 16 May 2019 15:59:03 +0000 (15:59 +0000)
Test: m -j ds-docs
Fixes: 132724201

Merged-In: I1bb2fbd7a085ab9816f71f8433feafa1f63a28ae
Change-Id: I1bb2fbd7a085ab9816f71f8433feafa1f63a28ae

core/java/android/view/View.java
core/java/android/view/contentcapture/ContentCaptureSession.java
core/java/android/view/contentcapture/DataRemovalRequest.java

index 921294a..9d55304 100644 (file)
@@ -9076,18 +9076,15 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
      * <pre>
      *   ContentCaptureSession mainSession = rootView.getContentCaptureSession();
      *   mainSession.setContentCaptureContext(ContentCaptureContext.forLocusId(Uri.parse(myUrl));
-     * <pre>
+     * </pre>
      *
      * <p>Then if the page had an {@code IFRAME}, you would create a new session for it:
      *
-     * <p>For example, if your activity is associated with a web domain, you could create a session
-     * {@code onCreate()} and associate it with the root view of the activity:
-     *
      * <pre>
      *   ContentCaptureSession iframeSession = mainSession.createContentCaptureSession(
      *       ContentCaptureContext.forLocusId(Uri.parse(iframeUrl)));
      *   iframeView.setContentCaptureSession(iframeSession);
-     * <pre>
+     * </pre>
      *
      * @param contentCaptureSession a session created by
      * {@link ContentCaptureSession#createContentCaptureSession(
index 210dea1..31cb4e2 100644 (file)
@@ -41,7 +41,7 @@ import java.util.ArrayList;
 import java.util.Random;
 
 /**
- * Session used to notify the Android system about events associated with views.
+ * Session used when notifying the Android system about events associated with views.
  */
 public abstract class ContentCaptureSession implements AutoCloseable {
 
index 3792846..68d4695 100644 (file)
@@ -32,6 +32,9 @@ import java.util.List;
 
 /**
  * Class used by apps to remove content capture data associated with {@link LocusId LocusIds}.
+ *
+ * <p>An app which has tagged data with a LocusId can therefore delete them later. This is intended
+ * to let apps propagate deletions of user data into the operating system.
  */
 public final class DataRemovalRequest implements Parcelable {