blob: cd2e9943aaa4d38dc45c146b5c79af989c31148b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.net;
import java.util.Collection;
import org.eclipse.core.internal.net.ProxyData;
import org.eclipse.jface.viewers.IStructuredContentProvider;
import org.eclipse.jface.viewers.Viewer;
public class ProxyEntriesContentProvider implements IStructuredContentProvider {
public ProxyEntriesContentProvider() {
super();
}
@Override
public void dispose() {
// Do nothing
}
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public Object[] getElements(Object inputElement) {
Collection coll = (Collection) inputElement;
return coll.toArray(new ProxyData[0]);
}
@Override
public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
// Do nothing
}
}