summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Browser/common
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2009-03-06 14:13:14 +0000
committerGrant Gayed <ggayed>2009-03-06 14:13:14 +0000
commita8be5d913c67f26bbc5b2ff9a28c2e23513ca33c (patch)
treec757ab5e3b58ac4b25ace9599558c68fbad1e1f0 /bundles/org.eclipse.swt/Eclipse SWT Browser/common
parentecc5ac7a0dda46ac231888f08a415dfceec22434 (diff)
downloadeclipse.platform.swt-a8be5d913c67f26bbc5b2ff9a28c2e23513ca33c.tar.gz
eclipse.platform.swt-a8be5d913c67f26bbc5b2ff9a28c2e23513ca33c.tar.xz
eclipse.platform.swt-a8be5d913c67f26bbc5b2ff9a28c2e23513ca33c.zip
javadoc
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Browser/common')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationListener.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationListener.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationListener.java
index 7a255d25dd..4f8d342c33 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationListener.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/AuthenticationListener.java
@@ -28,7 +28,7 @@ public interface AuthenticationListener extends SWTEventListener {
* This method is called when a page is navigated to that requires
* authentication.
* <p>
- * Setting the event's <code>user</code> and <code>password</code>
+ * Setting both the event's <code>user</code> and <code>password</code>
* fields causes these values to be used as credentials for authentication.
* Leaving one or both of these fields as <code>null</code> indicates
* that credentials are not known, so an authentication prompter should
@@ -49,7 +49,8 @@ public interface AuthenticationListener extends SWTEventListener {
* </ul>
*
* @param event the <code>AuthenticationEvent</code> that can be used to
- * supply authentication credentials or cancel an authentication challenge
+ * either supply authentication credentials, defer credential input to
+ * an authentication prompter, or cancel an authentication challenge.
*/
public void authenticate(AuthenticationEvent event);
}