1 11 package org.eclipse.core.net.proxy; 12 13 14 22 public interface IProxyChangeEvent { 23 24 28 public static final int NONPROXIED_HOSTS_CHANGED = 1; 29 30 34 public static final int PROXY_DATA_CHANGED = 2; 35 36 43 public static final int PROXY_SERVICE_ENABLEMENT_CHANGE = 3; 44 45 52 public int getChangeType(); 53 54 59 public String [] getOldNonProxiedHosts(); 60 61 66 public String [] getNonProxiedHosts(); 67 68 73 public IProxyData[] getOldProxyData(); 74 75 82 public IProxyData[] getChangedProxyData(); 83 84 } 85 | Popular Tags |