summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/java/android/webkit/HttpAuthHandler.java2
-rw-r--r--core/java/android/webkit/WebSettings.java2
-rw-r--r--core/java/android/webkit/WebView.java4
-rw-r--r--core/java/android/webkit/WebViewClient.java2
4 files changed, 5 insertions, 5 deletions
diff --git a/core/java/android/webkit/HttpAuthHandler.java b/core/java/android/webkit/HttpAuthHandler.java
index 296d960a5812..ee3b3698c1d9 100644
--- a/core/java/android/webkit/HttpAuthHandler.java
+++ b/core/java/android/webkit/HttpAuthHandler.java
@@ -40,7 +40,7 @@ public class HttpAuthHandler extends Handler {
* previously been rejected by the server for the current request.
*
* @return whether the credentials are suitable for use
- * @see Webview#getHttpAuthUsernamePassword
+ * @see WebView#getHttpAuthUsernamePassword
*/
public boolean useHttpAuthUsernamePassword() {
return false;
diff --git a/core/java/android/webkit/WebSettings.java b/core/java/android/webkit/WebSettings.java
index 7f6fa1adbe91..83f799045907 100644
--- a/core/java/android/webkit/WebSettings.java
+++ b/core/java/android/webkit/WebSettings.java
@@ -1066,7 +1066,7 @@ public abstract class WebSettings {
*
* @param appCachePath a String path to the directory containing
* Application Caches files.
- * @see setAppCacheEnabled
+ * @see #setAppCacheEnabled
*/
public synchronized void setAppCachePath(String appCachePath) {
throw new MustOverrideException();
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java
index 6aadaf91e15d..441b7b0000cd 100644
--- a/core/java/android/webkit/WebView.java
+++ b/core/java/android/webkit/WebView.java
@@ -615,7 +615,7 @@ public class WebView extends AbsoluteLayout
* @param realm the realm to which the credentials apply
* @param username the username
* @param password the password
- * @see getHttpAuthUsernamePassword
+ * @see #getHttpAuthUsernamePassword
* @see WebViewDatabase#hasHttpAuthUsernamePassword
* @see WebViewDatabase#clearHttpAuthUsernamePassword
*/
@@ -635,7 +635,7 @@ public class WebView extends AbsoluteLayout
* @return the credentials as a String array, if found. The first element
* is the username and the second element is the password. Null if
* no credentials are found.
- * @see setHttpAuthUsernamePassword
+ * @see #setHttpAuthUsernamePassword
* @see WebViewDatabase#hasHttpAuthUsernamePassword
* @see WebViewDatabase#clearHttpAuthUsernamePassword
*/
diff --git a/core/java/android/webkit/WebViewClient.java b/core/java/android/webkit/WebViewClient.java
index 556b2d2defe9..e8974c6cda33 100644
--- a/core/java/android/webkit/WebViewClient.java
+++ b/core/java/android/webkit/WebViewClient.java
@@ -214,7 +214,7 @@ public class WebViewClient {
* @param handler the HttpAuthHandler used to set the WebView's response
* @param host the host requiring authentication
* @param realm the realm for which authentication is required
- * @see Webview#getHttpAuthUsernamePassword
+ * @see WebView#getHttpAuthUsernamePassword
*/
public void onReceivedHttpAuthRequest(WebView view,
HttpAuthHandler handler, String host, String realm) {