summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/FindActionModeCallback.java
diff options
context:
space:
mode:
authorNate Fischer <ntfschr@google.com>2017-09-26 18:51:49 -0700
committerNate Fischer <ntfschr@google.com>2017-09-26 19:00:41 -0700
commit5cca7bd58695e4a34c3cacc400d89eeb7cb89e3e (patch)
tree1455fdada65415b08af83fbb1deaf757c22211fd /core/java/android/webkit/FindActionModeCallback.java
parenta0791db4d77257b76d3fb532c33c13942a5001b1 (diff)
WebView: use proper javadocs
Javadocs need to start with "/**", not "/*". This can unexpectedly trigger a presubmit failure if someone changes something else in these methods. This also fixes an import-order presubmit error. Bug: 65553544 Test: make -j30 docs (no visible change) Change-Id: I1bc8ef479e3dc9378e58904d0b317c4775117390
Diffstat (limited to 'core/java/android/webkit/FindActionModeCallback.java')
-rw-r--r--core/java/android/webkit/FindActionModeCallback.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/webkit/FindActionModeCallback.java b/core/java/android/webkit/FindActionModeCallback.java
index 6a8c256f0ae2..e011d51c51fd 100644
--- a/core/java/android/webkit/FindActionModeCallback.java
+++ b/core/java/android/webkit/FindActionModeCallback.java
@@ -70,7 +70,7 @@ public class FindActionModeCallback implements ActionMode.Callback, TextWatcher,
mActionMode.finish();
}
- /*
+ /**
* Place text in the text field so it can be searched for. Need to press
* the find next or find previous button to find all of the matches.
*/
@@ -110,7 +110,7 @@ public class FindActionModeCallback implements ActionMode.Callback, TextWatcher,
}
}
- /*
+ /**
* Move the highlight to the next match.
* @param next If {@code true}, find the next match further down in the document.
* If {@code false}, find the previous match, up in the document.
@@ -133,7 +133,7 @@ public class FindActionModeCallback implements ActionMode.Callback, TextWatcher,
updateMatchesString();
}
- /*
+ /**
* Highlight all the instances of the string from mEditText in mWebView.
*/
public void findAll() {
@@ -172,7 +172,7 @@ public class FindActionModeCallback implements ActionMode.Callback, TextWatcher,
}
}
- /*
+ /**
* Update the string which tells the user how many matches were found, and
* which match is currently highlighted.
*/