Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.core.net/src/org/eclipse/core/net/proxy/IProxyChangeEvent.java')
-rw-r--r--bundles/org.eclipse.core.net/src/org/eclipse/core/net/proxy/IProxyChangeEvent.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/bundles/org.eclipse.core.net/src/org/eclipse/core/net/proxy/IProxyChangeEvent.java b/bundles/org.eclipse.core.net/src/org/eclipse/core/net/proxy/IProxyChangeEvent.java
index e8b7ff4a4..4cdffa111 100644
--- a/bundles/org.eclipse.core.net/src/org/eclipse/core/net/proxy/IProxyChangeEvent.java
+++ b/bundles/org.eclipse.core.net/src/org/eclipse/core/net/proxy/IProxyChangeEvent.java
@@ -20,13 +20,13 @@ package org.eclipse.core.net.proxy;
* @since 1.0
*/
public interface IProxyChangeEvent {
-
+
/**
* Type constant that indicates that the list of non-proxied hosts has changed.\
* @see #getChangeType()
*/
public static final int NONPROXIED_HOSTS_CHANGED = 1;
-
+
/**
* Type constant that indicates that the data for one or more proxies has changed
* @see #getChangeType()
@@ -34,14 +34,14 @@ public interface IProxyChangeEvent {
public static final int PROXY_DATA_CHANGED = 2;
/**
- * Type constant that indicates that the enablement of the proxy
+ * Type constant that indicates that the enablement of the proxy
* service has changed. Client should consult the service to determine
* the current enablement
* @see #getChangeType()
* @see IProxyService#isProxiesEnabled()
*/
public static final int PROXY_SERVICE_ENABLEMENT_CHANGE = 3;
-
+
/**
* Return the type of change this event represents. Clients
* should ignore types they do not recognize.
@@ -50,31 +50,31 @@ public interface IProxyChangeEvent {
* @see #PROXY_DATA_CHANGED
*/
public int getChangeType();
-
+
/**
* For a change type of {@link #NONPROXIED_HOSTS_CHANGED}, this method will
* return the list of non-proxied hosts before the change occurred.
* @return the list of non-proxied hosts before the change occurred
*/
public String[] getOldNonProxiedHosts();
-
+
/**
* For a change type of {@link #NONPROXIED_HOSTS_CHANGED}, this method will
* return the list of non-proxied hosts after the change occurred.
* @return the list of non-proxied hosts after the change occurred
*/
public String[] getNonProxiedHosts();
-
+
/**
* For a change type of {@link #PROXY_DATA_CHANGED}, this method returns
* the state of all known proxies before the change occurred.
* @return the state of all known proxies before the change occurred
*/
public IProxyData[] getOldProxyData();
-
+
/**
* For a change type of {@link #PROXY_DATA_CHANGED}, this method returns
- * the state of the changed known proxies after the change occurred. Clients
+ * the state of the changed known proxies after the change occurred. Clients
* should check the {@link IProxyService#isProxiesEnabled()} method to see
* if the proxy data change was the result of proxies being disabled.
* @return the state of the changed known proxies after the change occurred

Back to the top