blob: 13f5deb7173ca91e2049ffa8f35b9f4f2657e60b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20070201 154100 pmoogk@ca.ibm.com - Peter Moogk, Port internet code from WTP to Eclipse base.
*******************************************************************************/
package org.eclipse.ui.internal.net;
import java.util.Collection;
import org.eclipse.jface.viewers.IStructuredContentProvider;
import org.eclipse.jface.viewers.Viewer;
public class NonProxyHostsContentProvider implements IStructuredContentProvider {
public NonProxyHostsContentProvider() {
super();
}
@Override
public void dispose() {
// Do nothing
}
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public Object[] getElements(Object inputElement) {
Collection coll = (Collection) inputElement;
return coll.toArray(new ProxyBypassData[0]);
}
@Override
public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
// Do nothing
}
}