Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c0167b179b7f39b3827c13c243d084cb84d51b71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*******************************************************************************
 * Copyright (c) 2005, 2007 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;

/**
 * Monitor content provider.
 */
public class NonProxyHostsContentProvider implements IStructuredContentProvider 
{
	/**
	 * MonitorContentProvider constructor comment.
	 */
	public NonProxyHostsContentProvider() 
	{
		super();
	}

	/*
	 * Disposes of this content provider.  
	 */
	public void dispose() 
	{
		// do nothing
	}

	/*
	 * Returns the elements to display in the viewer 
	 * when its input is set to the given element. 
	 */
	public Object[] getElements(Object inputElement) 
	{
		Collection coll = (Collection)inputElement;
    
		return coll.toArray( new String[0] );
	}

	/*
	 * Notifies this content provider that the given viewer's input
	 * has been switched to a different element.
	 */
	public void inputChanged(Viewer viewer, Object oldInput, Object newInput) 
	{
		// do nothing
	}
}

Back to the top