Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxyChangeEvent.java')
-rw-r--r--bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxyChangeEvent.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxyChangeEvent.java b/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxyChangeEvent.java
index 3f3584a50..510887168 100644
--- a/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxyChangeEvent.java
+++ b/bundles/org.eclipse.core.net/src/org/eclipse/core/internal/net/ProxyChangeEvent.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -30,22 +30,27 @@ public class ProxyChangeEvent implements IProxyChangeEvent {
this.changeData = changedData;
}
+ @Override
public int getChangeType() {
return type;
}
+ @Override
public IProxyData[] getChangedProxyData() {
return changeData;
}
+ @Override
public String[] getNonProxiedHosts() {
return nonProxiedHosts;
}
+ @Override
public String[] getOldNonProxiedHosts() {
return oldHosts;
}
+ @Override
public IProxyData[] getOldProxyData() {
return oldData;
}

Back to the top