blob: 37e62161010b33c5893c736d23c5fb8749bf74af [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 org.eclipse.core.internal.net.ProxySelector;
import org.eclipse.jface.viewers.*;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.TableColumn;
public class NonProxyHostsLabelProvider extends BaseLabelProvider implements
ITableLabelProvider {
public NonProxyHostsLabelProvider() {
super();
}
@Override
public Image getColumnImage(Object element, int columnIndex) {
return null;
}
@Override
public String getColumnText(Object element, int columnIndex) {
if (element == null) {
return null;
}
ProxyBypassData data = (ProxyBypassData) element;
switch (columnIndex) {
case 0:
return null;
case 1:
return data.getHost();
case 2:
return ProxySelector.localizeProvider(data.getSource());
default:
return null;
}
}
@Override
public boolean isLabelProperty(Object element, String property) {
return false;
}
public void createColumns(TableViewer viewer) {
String[] titles = {
"", //$NON-NLS-1$
NetUIMessages.ProxyPreferencePage_13,
NetUIMessages.ProxyPreferencePage_14 };
for (int i = 0; i < titles.length; i++) {
TableColumn column = new TableViewerColumn(viewer, SWT.NONE)
.getColumn();
column.setText(titles[i]);
column.setResizable(true);
}
}
}